Skip to content

Commit 7b17b92

Browse files
authored
Create check.yml
1 parent f087de3 commit 7b17b92

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Diff for: .github/workflows/check.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Check
2+
3+
on:
4+
push:
5+
branches: [ "next" ]
6+
pull_request:
7+
branches: [ "next" ]
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+
runs-on: windows-latest
25+
26+
steps:
27+
- uses: actions/checkout@v4
28+
- name: Run build script
29+
run: python ./pack.py

0 commit comments

Comments
 (0)