aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-04-23 20:09:41 -0700
committerGitHub <[email protected]>2021-04-23 20:09:41 -0700
commit6dcc7b4ffa67d540a9a3d890f35d3bb51c4f3bf2 (patch)
tree6870126f31971f7dc7d5eeada1a878d32b2953bd /.github/workflows
parentchore: Create Mergify configuration (diff)
downloadwhirl-6dcc7b4ffa67d540a9a3d890f35d3bb51c4f3bf2.tar.xz
whirl-6dcc7b4ffa67d540a9a3d890f35d3bb51c4f3bf2.zip
chore(actions): Check for compilation errors on push
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/rust.yml17
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