chore(deps): update coverallsapp/github-action action to v2.3.4 #66
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
checks: write | |
steps: | |
# setup | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: ./.github/actions/setup | |
- name: Install more cargo tools | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-llvm-cov,cargo-nextest | |
# test | |
- name: Run tests and generate coverage | |
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info nextest --profile ci | |
- uses: mikepenz/action-junit-report@v4 | |
if: always() | |
with: | |
check_name: test | |
report_paths: "**/junit.xml" | |
# lint | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --all-features -- -D warnings | |
name: lint | |
if: always() | |
# coverage | |
- name: Upload coverage to Coveralls | |
uses: coverallsapp/github-action@v2.3.4 | |
if: always() | |