1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
actix-extras/.github/workflows/lint.yml

64 lines
1.6 KiB
YAML
Raw Normal View History

2021-03-22 12:46:02 +01:00
name: Lint
on: [pull_request]
2023-04-09 20:41:57 +02:00
permissions: { contents: read }
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2020-01-30 06:44:05 +01:00
jobs:
2021-03-22 12:46:02 +01:00
fmt:
2020-01-30 06:44:05 +01:00
runs-on: ubuntu-latest
steps:
2022-05-25 15:07:31 +02:00
- uses: actions/checkout@v3
- name: Install Rust (nightly)
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: rustfmt
- name: Check with rustfmt
2022-12-01 11:45:31 +01:00
run: cargo fmt --all -- --check
2021-03-22 12:46:02 +01:00
clippy:
runs-on: ubuntu-latest
steps:
2022-05-25 15:07:31 +02:00
- uses: actions/checkout@v3
2021-03-22 12:46:02 +01:00
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with: { components: clippy }
- name: Check with Clippy
2022-12-01 11:45:31 +01:00
run: cargo clippy --workspace --tests --all-features
public-api-diff:
runs-on: ubuntu-latest
steps:
- name: checkout ${{ github.base_ref }}
uses: actions/checkout@v3
with:
ref: ${{ github.base_ref }}
- name: checkout ${{ github.head_ref }}
uses: actions/checkout@v3
2023-04-09 20:41:57 +02:00
- name: Install Rust (nightly)
uses: actions-rust-lang/setup-rust-toolchain@v1
with: { toolchain: nightly }
2023-04-09 20:41:57 +02:00
- name: Install cargo-public-api
uses: taiki-e/cache-cargo-install-action@v1
with: { tool: cargo-public-api }
- name: generate API diff
run: |
for f in $(find -mindepth 2 -maxdepth 2 -name Cargo.toml); do
2023-04-09 20:41:57 +02:00
cargo public-api --manifest-path "$f" --all-features diff ${{ github.event.pull_request.base.sha }}..${{ github.sha }} >> /tmp/diff.txt
done
2023-04-09 20:41:57 +02:00
cat /tmp/diff.txt