diff options
| author | Fuwn <[email protected]> | 2021-04-23 20:09:41 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-23 20:09:41 +0000 |
| commit | b0c07ccbf7a0706db1f756693fb8df1ad64ebd26 (patch) | |
| tree | 8404ac269e98b7aa8a26fc265e487a395ae95e12 /.github/workflows | |
| parent | chore: Create Mergify configuration (diff) | |
| download | whirl-b0c07ccbf7a0706db1f756693fb8df1ad64ebd26.tar.xz whirl-b0c07ccbf7a0706db1f756693fb8df1ad64ebd26.zip | |
chore(actions): Check for compilation errors on push
Diffstat (limited to '.github/workflows')
| -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 |