2020-01-22 16:06:13 +00:00
|
|
|
name: Clippy Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
# Ignore bors branches, since they are covered by `clippy_bors.yml`
|
2020-02-12 10:02:07 +00:00
|
|
|
branches-ignore:
|
|
|
|
- auto
|
|
|
|
- try
|
2022-05-05 14:12:52 +00:00
|
|
|
# Don't run Clippy tests, when only text files were modified
|
2020-01-22 16:06:13 +00:00
|
|
|
paths-ignore:
|
|
|
|
- 'COPYRIGHT'
|
|
|
|
- 'LICENSE-*'
|
|
|
|
- '**.md'
|
|
|
|
- '**.txt'
|
|
|
|
pull_request:
|
2022-05-05 14:12:52 +00:00
|
|
|
# Don't run Clippy tests, when only text files were modified
|
2020-01-22 16:06:13 +00:00
|
|
|
paths-ignore:
|
|
|
|
- 'COPYRIGHT'
|
|
|
|
- 'LICENSE-*'
|
|
|
|
- '**.md'
|
|
|
|
- '**.txt'
|
|
|
|
|
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
CARGO_TARGET_DIR: '${{ github.workspace }}/target'
|
2020-02-07 21:24:41 +00:00
|
|
|
NO_FMT_TEST: 1
|
2022-08-28 23:22:46 +00:00
|
|
|
CARGO_INCREMENTAL: 0
|
2024-08-06 14:12:49 +00:00
|
|
|
RUSTFLAGS: -D warnings
|
2020-01-22 16:06:13 +00:00
|
|
|
|
2024-03-13 16:26:07 +00:00
|
|
|
concurrency:
|
|
|
|
# For a given workflow, if we push to the same PR, cancel all previous builds on that PR.
|
|
|
|
# If the push is not attached to a PR, we will cancel all builds on the same branch.
|
|
|
|
group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-01-22 16:06:13 +00:00
|
|
|
jobs:
|
|
|
|
base:
|
2021-03-12 14:30:50 +00:00
|
|
|
# NOTE: If you modify this job, make sure you copy the changes to clippy_bors.yml
|
2022-12-07 11:29:13 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-01-22 16:06:13 +00:00
|
|
|
|
|
|
|
steps:
|
2020-02-07 21:24:41 +00:00
|
|
|
# Setup
|
2020-01-31 13:44:55 +00:00
|
|
|
- name: Checkout
|
2023-12-26 23:43:16 +00:00
|
|
|
uses: actions/checkout@v4
|
2020-02-07 21:24:41 +00:00
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
- name: Install toolchain
|
|
|
|
run: rustup show active-toolchain
|
2020-01-22 16:06:13 +00:00
|
|
|
|
2020-02-07 21:24:41 +00:00
|
|
|
# Run
|
2020-01-22 16:06:13 +00:00
|
|
|
- name: Build
|
2024-08-06 14:12:49 +00:00
|
|
|
run: cargo build --tests --features internal
|
2020-02-07 21:24:41 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
- name: Test
|
2024-08-06 14:12:49 +00:00
|
|
|
run: cargo test --features internal
|
2021-01-02 15:29:43 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
- name: Test clippy_lints
|
2024-08-06 14:12:49 +00:00
|
|
|
run: cargo test --features internal
|
2021-03-12 14:30:50 +00:00
|
|
|
working-directory: clippy_lints
|
|
|
|
|
2021-12-30 14:10:43 +00:00
|
|
|
- name: Test clippy_utils
|
2024-08-06 14:12:49 +00:00
|
|
|
run: cargo test
|
2021-12-30 14:10:43 +00:00
|
|
|
working-directory: clippy_utils
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
- name: Test rustc_tools_util
|
2024-08-06 14:12:49 +00:00
|
|
|
run: cargo test
|
2021-03-12 14:30:50 +00:00
|
|
|
working-directory: rustc_tools_util
|
2020-02-07 21:24:41 +00:00
|
|
|
|
2020-01-22 16:06:13 +00:00
|
|
|
- name: Test clippy_dev
|
2024-08-06 14:12:49 +00:00
|
|
|
run: cargo test
|
2020-01-22 16:06:13 +00:00
|
|
|
working-directory: clippy_dev
|
2020-02-07 21:24:41 +00:00
|
|
|
|
2020-01-22 16:06:13 +00:00
|
|
|
- name: Test clippy-driver
|
2024-05-16 20:11:58 +00:00
|
|
|
run: .github/driver.sh
|
|
|
|
env:
|
|
|
|
OS: ${{ runner.os }}
|