We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd0cd6 commit 3fda0a9Copy full SHA for 3fda0a9
.github/workflows/build.yml
@@ -0,0 +1,42 @@
1
+name: build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "**" # target all branches
7
+ pull_request:
8
9
10
11
+env:
12
+ CARGO_TERM_COLOR: always
13
14
+jobs:
15
+ build_ubuntu:
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - name: Build
21
+ run: cargo build --verbose
22
+ - name: Run tests
23
+ run: cargo test --verbose
24
25
+ build_macos:
26
+ runs-on: macos-latest
27
28
29
30
31
32
33
34
35
+ runs-on: windows-latest
36
37
38
39
40
41
42
0 commit comments