diff options
| author | Fuwn <[email protected]> | 2021-04-23 20:09:41 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-23 20:09:41 -0700 |
| commit | 6dcc7b4ffa67d540a9a3d890f35d3bb51c4f3bf2 (patch) | |
| tree | 6870126f31971f7dc7d5eeada1a878d32b2953bd | |
| parent | chore: Create Mergify configuration (diff) | |
| download | whirl-6dcc7b4ffa67d540a9a3d890f35d3bb51c4f3bf2.tar.xz whirl-6dcc7b4ffa67d540a9a3d890f35d3bb51c4f3bf2.zip | |
chore(actions): Check for compilation errors on push
| -rw-r--r-- | .github/workflows/rust.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..40ad2b0 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,17 @@ +name: Rust ✅ + +on: + push: + branches: [ develop ] + pull_request: + branches: [ develop ] + +env: + CARGO_TERM_COLOR: always + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: cargo check |