Bump tempfile from 3.10.1 to 3.12.0 #654
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: CI | |
on: | |
merge_group: | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dylint-link | |
run: cargo install dylint-link | |
- name: Prettier | |
run: | | |
npm install -g prettier && prettier --check '**/*.md' '**/*.yml' | |
# S3v3ru5: Pin `markdown-link-check` to version 3.11 until the following issue is resolved: | |
# https://github.com/tcort/markdown-link-check/issues/304 | |
- name: Markdown link check | |
run: | | |
npm install -g [email protected] && find . -name '*.md' | xargs markdown-link-check | |
- name: Cargo sort | |
run: | | |
cargo install cargo-sort | |
find . -name Cargo.toml | xargs -n 1 dirname | xargs -n 1 cargo sort --check --grouped | |
- name: Format | |
run: | | |
cargo install rustfmt_if_chain | |
rustup component add rustfmt | |
find . -name '*.rs' -exec rustfmt_if_chain --edition 2021 {} \; && git diff --exit-code | |
- name: Format example READMEs | |
run: ./scripts/update_readmes.sh && git diff --exit-code | |
- name: Clippy | |
run: | | |
rustup component add clippy | |
./scripts/clippy.sh | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dylint-link | |
run: cargo install dylint-link | |
- name: Test | |
run: cargo test |