File tree Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments