We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2170db9 commit a2239c0Copy full SHA for a2239c0
1 file changed
.github/workflows/release.yml
@@ -13,12 +13,10 @@ jobs:
13
14
- uses: dtolnay/rust-toolchain@stable
15
with:
16
- targets: x86_64-pc-windows-msvc,x86_64-unknown-linux-gnu
+ targets: x86_64-unknown-linux-gnu
17
18
- - name: cargo check all targets
19
- run: |
20
- cargo check --target x86_64-unknown-linux-gnu
21
- cargo check --target x86_64-pc-windows-msvc
+ - name: cargo check linux target
+ run: cargo check --target x86_64-unknown-linux-gnu
22
23
build:
24
needs: check
0 commit comments