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