mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-23 20:51:06 +01:00
bb4fc31461
Bumps [taiki-e/install-action](https://github.com/taiki-e/install-action) from 2.44.69 to 2.44.71. - [Release notes](https://github.com/taiki-e/install-action/releases) - [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/install-action/compare/v2.44.69...v2.44.71) --- updated-dependencies: - dependency-name: taiki-e/install-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
70 lines
1.7 KiB
YAML
70 lines
1.7 KiB
YAML
name: Lint
|
|
|
|
on:
|
|
pull_request: {}
|
|
merge_group: { types: [checks_requested] }
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
fmt:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1.10.1
|
|
with:
|
|
toolchain: nightly
|
|
components: rustfmt
|
|
|
|
- name: Rustfmt Check
|
|
run: cargo fmt --all -- --check
|
|
|
|
clippy:
|
|
permissions:
|
|
contents: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1.10.1
|
|
with: { components: clippy }
|
|
|
|
- uses: giraffate/clippy-action@v1.0.1
|
|
with:
|
|
reporter: 'github-pr-check'
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
clippy_flags: --workspace --all-features --tests --examples --bins -- -Dclippy::todo -Aunknown_lints
|
|
|
|
check-external-types:
|
|
if: false # rustdoc mismatch currently
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Rust (${{ vars.RUST_VERSION_EXTERNAL_TYPES }})
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.10.1
|
|
with:
|
|
toolchain: ${{ vars.RUST_VERSION_EXTERNAL_TYPES }}
|
|
|
|
- name: Install just
|
|
uses: taiki-e/install-action@v2.44.71
|
|
with:
|
|
tool: just
|
|
|
|
- name: Install cargo-check-external-types
|
|
uses: taiki-e/cache-cargo-install-action@v2.0.1
|
|
with:
|
|
tool: cargo-check-external-types
|
|
|
|
- name: check external types
|
|
run: just check-external-types-all +${{ vars.RUST_VERSION_EXTERNAL_TYPES }}
|