Skip to content

Merge pull request #16 from jhheider/dependabot/cargo/anyhow-1.0.95 #97

Merge pull request #16 from jhheider/dependabot/cargo/anyhow-1.0.95

Merge pull request #16 from jhheider/dependabot/cargo/anyhow-1.0.95 #97

# /~https://github.com/BamPeers/rust-ci-github-actions-workflow
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
name: Check and Lint
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: cargo check --all-features
env:
RUSTFLAGS: "-D warnings"
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- run: cargo clippy --all-features
env:
RUSTFLAGS: "-D warnings"
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: nosborn/github-action-markdown-cli@v3.3.0
with:
files: .