diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-09-28 11:33:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-28 11:33:37 +0200 |
| commit | 6a22e84caf7f56689a883d3f3c550f305a3d1cf9 (patch) | |
| tree | 495cc49f977d9e01745d0a05a23f6ed179077603 | |
| parent | a6d51e34f13e8f76e86126a9f70558114330d459 (diff) | |
| download | rapier-6a22e84caf7f56689a883d3f3c550f305a3d1cf9.tar.gz rapier-6a22e84caf7f56689a883d3f3c550f305a3d1cf9.tar.bz2 rapier-6a22e84caf7f56689a883d3f3c550f305a3d1cf9.zip | |
Start setting-up a github-action workflow.
| -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..3c13d1b --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +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 |
