Skip to content

build(deps): bump taiki-e/install-action from 2.44.71 to 2.45.6 #140

build(deps): bump taiki-e/install-action from 2.44.71 to 2.45.6

build(deps): bump taiki-e/install-action from 2.44.71 to 2.45.6 #140

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 just, cargo-hack
uses: taiki-e/[email protected]
with:
tool: just,cargo-hack
- name: Check with Clippy
run: just clippy
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
- name: Check with Rustfmt
run: cargo fmt -- --check
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (nightly)
uses: actions-rust-lang/[email protected]
with:
toolchain: nightly
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:
- name: Checkout main branch
uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
- name: Checkout PR branch
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rust-lang/[email protected]
with:
toolchain: nightly-2024-09-10
- name: Install cargo-public-api
uses: taiki-e/[email protected]
with:
tool: cargo-public-api
- name: Generate API diff
run: |
for f in $(find -mindepth 2 -maxdepth 2 -name Cargo.toml); do
cargo public-api --manifest-path "$f" --all-features diff ${{ github.event.pull_request.base.sha }}..${{ github.sha }} >> /tmp/diff.txt
done
cat /tmp/diff.txt