Skip to content

Bump anyhow from 1.0.94 to 1.0.95 #25

Bump anyhow from 1.0.94 to 1.0.95

Bump anyhow from 1.0.94 to 1.0.95 #25

Workflow file for this run

name: PR Checks
on:
workflow_dispatch:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- run: cargo llvm-cov --lcov --output-path target/coverage.lcov
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: target/coverage.lcov
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Lint
run: |
cargo fmt --all -- --check
cargo clippy --all-targets --all-features -- -D warnings
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master