Skip to content

Commit bb384fb

Browse files
authored
Create tests.yml
1 parent 20a1e5c commit bb384fb

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

.github/workflows/tests.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
14+
15+
windows_x64:
16+
runs-on: windows-2025
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Run tests
20+
run: cargo test --verbose
21+
22+
linux_x64:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v4
26+
- name: Run tests
27+
run: cargo test --verbose
28+
29+
linux_arm64:
30+
runs-on: ubuntu-24.04-arm
31+
steps:
32+
- uses: actions/checkout@v4
33+
- name: Run tests
34+
run: cargo test --verbose
35+
36+
macOS_intel:
37+
runs-on: macos-13
38+
steps:
39+
- uses: actions/checkout@v4
40+
- name: Run tests
41+
run: cargo test --verbose
42+
43+
macOS_arm64:
44+
runs-on: macos-latest
45+
steps:
46+
- uses: actions/checkout@v4
47+
- name: Run tests
48+
run: cargo test --verbose
49+

0 commit comments

Comments
 (0)