File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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+ with :
30+ command : check
You can’t perform that action at this time.
0 commit comments