We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd011e5 commit 19382cbCopy full SHA for 19382cb
1 file changed
.github/workflows/ci.yml
@@ -31,18 +31,20 @@ jobs:
31
run: cargo fetch
32
33
- name: Run clippy
34
- run: cargo clippy --all-targets --all-features -- -D warnings || true`n continue-on-error: true
+ run: cargo clippy --all-targets --all-features -- -D warnings || true
35
+ continue-on-error: true
36
37
- name: Run tests
- run: cargo test --all-features || true`n continue-on-error: true
38
+ run: cargo test --all-features || true
39
40
41
- name: Build
42
run: cargo build --release
43
44
publish:
45
needs: test
46
runs-on: ubuntu-latest
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
47
+ if: github.event_name == 'release' && github.event.action == 'published'
48
49
steps:
50
- uses: actions/checkout@v4
0 commit comments