We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86733f9 commit 77f8246Copy full SHA for 77f8246
.github/workflows/cargo-build.yaml
@@ -0,0 +1,26 @@
1
+name: CI Build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ name: cargo build
8
+ runs-on: ${{ matrix.os }}
9
+ strategy:
10
+ matrix:
11
+ os: [ubuntu-latest, macos-latest, windows-latest]
12
13
+ steps:
14
+ - name: Checkout sources
15
+ uses: actions/checkout@v1
16
17
+ - name: Install toolchain
18
+ uses: actions-rs/toolchain@v1
19
+ with:
20
+ toolchain: stable
21
+ override: true
22
23
+ - name: Run `cargo build`
24
+ uses: actions-rs/cargo@v1
25
26
+ command: build
0 commit comments