We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f087de3 commit 7b17b92Copy full SHA for 7b17b92
.github/workflows/check.yml
@@ -0,0 +1,29 @@
1
+name: Check
2
+
3
+on:
4
+ push:
5
+ branches: [ "next" ]
6
+ pull_request:
7
8
9
+env:
10
+ CARGO_TERM_COLOR: always
11
12
+jobs:
13
+ debug-build-test:
14
+ runs-on: windows-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Debug build
19
+ run: cargo build --verbose
20
+ - name: Run tests
21
+ run: cargo test --verbose
22
23
+ release-build:
24
25
26
27
28
+ - name: Run build script
29
+ run: python ./pack.py
0 commit comments