build(deps): bump actions/checkout from 2 to 4 #221
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
on: [push, pull_request] | |
name: lint | |
jobs: | |
fmt: | |
name: cargo fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
run: rustup show && rustup update | |
- name: cargo fmt | |
run: cargo fmt --all -- --check | |
clippy: | |
name: cargo clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
run: rustup show && rustup update | |
- name: cargo clippy | |
run: cargo clippy --workspace --all-features --tests -- -D warnings | |
readme: | |
name: cargo readme | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo +stable install cargo-readme | |
- run: cd ciborium-io && cargo readme > README.md | |
- run: cd ciborium-ll && cargo readme > README.md | |
- run: cd ciborium && cargo readme > README.md | |
- run: git diff --exit-code |