We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3627f4e commit d6c58efCopy full SHA for d6c58ef
2 files changed
template/.github/workflows/audit.yml
@@ -16,11 +16,8 @@ jobs:
16
steps:
17
- name: Checkout repository
18
uses: actions/checkout@v4
19
- # Ensure that the latest version of Cargo is installed
20
- - name: Install Rust toolchain
21
- uses: dtolnay/rust-toolchain@stable
22
- - uses: Swatinem/rust-cache@v2
23
- - uses: actions-rs/audit-check@v1
+ - name: Run security audit
+ uses: rustsec/audit-check@v1.4.1
24
with:
25
token: ${{ secrets.GITHUB_TOKEN }}
26
{% endraw %}
template/.github/workflows/ci.yml
@@ -75,5 +75,9 @@ jobs:
75
uses: taiki-e/install-action@cargo-llvm-cov
76
- name: Generate code coverage
77
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
78
+ - name: Coveralls
79
+ uses: coverallsapp/github-action@v2
80
+ with:
81
+ file: lcov.info
82
83
0 commit comments