File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change
1
+ env :
2
+ RUSTFLAGS : " -Dwarnings"
3
+ RUSTDOCFLAGS : " -Dwarnings"
4
+
1
5
name : CI
2
6
on : [push, pull_request]
3
7
jobs :
4
8
test :
5
9
name : Test
6
- runs-on : ubuntu-latest
7
10
strategy :
8
11
matrix :
9
- rust : [stable, beta, nightly]
12
+ os : [windows-2025, ubuntu-24.04, macos-15]
13
+ rust : [stable, nightly]
14
+ include :
15
+ - os : ubuntu-24.04
16
+ rust : beta
17
+ runs-on : ${{ matrix.os }}
10
18
steps :
11
- - uses : actions/checkout@master
12
- - name : Install Rust
13
- run : rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
14
- - run : cargo test
15
- - run : cargo doc
19
+ - uses : actions/checkout@master
20
+ - name : Install Rust
21
+ run : rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
22
+ - run : cargo test
23
+ - run : cargo doc
You can’t perform that action at this time.
0 commit comments