We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e6dd32 commit 561c838Copy full SHA for 561c838
.github/workflows/rust.yml
@@ -0,0 +1,30 @@
1
+# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
2
+#
3
+# While our "example" application has the platform-specific code,
4
+# for simplicity we are compiling and testing everything on the Ubuntu environment only.
5
+# For multi-OS testing see the `cross.yml` workflow.
6
+
7
+on: [push, pull_request]
8
9
+name: Quickstart
10
11
+jobs:
12
+ check:
13
+ name: Check
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout sources
17
+ uses: actions/checkout@v2
18
19
+ - name: Install stable toolchain
20
+ uses: actions-rs/toolchain@v1
21
+ with:
22
+ profile: minimal
23
+ toolchain: nightly
24
+ override: true
25
26
+ - name: Run cargo check
27
+ uses: actions-rs/cargo@v1
28
+ continue-on-error: false
29
30
+ command: check
0 commit comments