diff options
| author | Fuwn <[email protected]> | 2020-10-26 19:05:00 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-10-26 19:05:00 -0700 |
| commit | 6c9e2252e7d810703c87d2e17bc3488fa71bc134 (patch) | |
| tree | 6b4a651adcf39758435bb4908701cc2c78dc58ce /.github/workflows | |
| parent | repo: push main from local to remote (diff) | |
| download | dep-core-next-6c9e2252e7d810703c87d2e17bc3488fa71bc134.tar.xz dep-core-next-6c9e2252e7d810703c87d2e17bc3488fa71bc134.zip | |
repo: setup ci
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/rust.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..7ae98f3 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose |