Skip to content

chore(deps): bump taiki-e/install-action from 2.44.60 to 2.44.67 #126

chore(deps): bump taiki-e/install-action from 2.44.60 to 2.44.67

chore(deps): bump taiki-e/install-action from 2.44.60 to 2.44.67 #126

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
clippy:
runs-on: ubuntu-latest
permissions:
contents: read
checks: write
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rust-lang/[email protected]
with:
components: clippy
- name: Install cargo-hack
uses: taiki-e/[email protected]
with:
tool: cargo-hack
- name: Clippy
run: |
cargo clippy --workspace --no-default-features
cargo clippy --workspace --no-default-features --all-features
cargo hack --feature-powerset --depth=3 clippy --workspace
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (nightly)
uses: actions-rust-lang/[email protected]
with:
toolchain: nightly
components: rustfmt
- run: cargo fmt -- --check
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rust-lang/[email protected]
with:
components: rust-docs
- name: Check for broken intra-doc links
env:
RUSTDOCFLAGS: -D warnings
run: cargo doc --workspace --no-deps --all-features
public-api-diff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
- uses: actions/checkout@v4
- name: Install Rust (nightly-2024-09-10)
uses: actions-rust-lang/[email protected]
with:
toolchain: nightly-2024-09-10
- uses: taiki-e/[email protected]
with:
tool: cargo-public-api
- name: Generate API diff
run: |
cargo public-api diff ${{ github.event.pull_request.base.sha }}..${{ github.sha }}