We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f4035f commit 4b6d67bCopy full SHA for 4b6d67b
.github/workflows/rust.yml
@@ -0,0 +1,35 @@
1
+name: Rust
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+env:
10
+ CARGO_TERM_COLOR: always
11
12
+jobs:
13
+ build:
14
+ name: Ubuntu Latest
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Info
19
+ run: |
20
+ rustc -V
21
+ cargo -V
22
+ - name: Test
23
+ run: cargo test
24
+ build-windows:
25
+ name: Windows 2019 Server
26
+ runs-on: windows-2019
27
28
29
30
31
32
33
+ cmd /C ver
34
35
0 commit comments