We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1db0572 commit d217dddCopy full SHA for d217ddd
1 file changed
.github/workflows/package.yml
@@ -72,16 +72,16 @@ jobs:
72
with:
73
targets: ${{ matrix.target }}
74
75
+ - name: Check crate
76
+ if: matrix.os == 'macos' || matrix.os == 'windows' || matrix.os == 'ubuntu' && matrix.arch == 'amd64'
77
+ run: cargo publish --dry-run --target ${{ matrix.target }}
78
+
79
- name: Clippy (release mode)
80
run: cargo clippy --release -- -D warnings
81
82
- name: Test (release mode)
- run: cargo test --release --verbose -- --nocapture
-
- - name: Check crate
- if: matrix.os == 'macos' || matrix.os == 'windows' || matrix.os == 'ubuntu' && matrix.arch == 'amd64'
83
run: |
84
- cargo publish --dry-run --target ${{ matrix.target }} &&
+ cargo test --release --verbose -- --nocapture &&
85
cargo clean
86
87
- name: Install Cross
0 commit comments