We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef75c00 commit c0b11aaCopy full SHA for c0b11aa
1 file changed
.github/workflows/rust-ci.yml
@@ -46,6 +46,13 @@ jobs:
46
target: x86_64-pc-windows-msvc
47
# msvc's `-Werror` is `/WX`
48
cxxflags: '/WX'
49
+ - os: windows-2022
50
+ target: x86_64-pc-windows-msvc
51
+ cxx: clang++
52
+ cxxflags: '-Werror'
53
54
+ target: x86_64-pc-windows-gnu
55
56
runs-on: ${{ matrix.os }}
57
env:
58
CXX: ${{ matrix.cxx }}
@@ -73,9 +80,9 @@ jobs:
73
80
run: cargo fetch --locked --target $TARGET
74
81
- run: cargo fetch --locked
75
82
- name: cargo test build
76
- run: cargo build --tests --release --all-features
83
+ run: cargo build --tests --release --all-features --target $TARGET
77
84
- name: cargo test
78
- run: cargo test --release --all-features
85
+ run: cargo test --release --all-features --target $TARGET
79
86
87
deny-check:
88
name: cargo-deny
0 commit comments