rust/.github/workflows/clippy.yml

75 lines
1.9 KiB
YAML
Raw Normal View History

2020-01-22 10:06:13 -06:00
name: Clippy Test
on:
push:
# Ignore bors branches, since they are covered by `clippy_bors.yml`
branches-ignore:
- auto
- try
# Don't run Clippy tests, when only text files were modified
2020-01-22 10:06:13 -06:00
paths-ignore:
- 'COPYRIGHT'
- 'LICENSE-*'
- '**.md'
- '**.txt'
pull_request:
# Don't run Clippy tests, when only text files were modified
2020-01-22 10:06:13 -06:00
paths-ignore:
- 'COPYRIGHT'
- 'LICENSE-*'
- '**.md'
- '**.txt'
env:
RUST_BACKTRACE: 1
CARGO_TARGET_DIR: '${{ github.workspace }}/target'
2020-02-07 15:24:41 -06:00
NO_FMT_TEST: 1
2022-08-28 18:22:46 -05:00
CARGO_INCREMENTAL: 0
2020-01-22 10:06:13 -06: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 10:06:13 -06:00
jobs:
base:
# NOTE: If you modify this job, make sure you copy the changes to clippy_bors.yml
runs-on: ubuntu-latest
2020-01-22 10:06:13 -06:00
steps:
2020-02-07 15:24:41 -06:00
# Setup
- name: Checkout
uses: actions/checkout@v4
2020-02-07 15:24:41 -06:00
- name: Install toolchain
run: rustup show active-toolchain
2020-01-22 10:06:13 -06:00
2020-02-07 15:24:41 -06:00
# Run
2020-01-22 10:06:13 -06:00
- name: Build
2023-06-30 16:34:28 -05:00
run: cargo build --tests --features deny-warnings,internal
2020-02-07 15:24:41 -06:00
- name: Test
run: cargo test --features deny-warnings,internal
- name: Test clippy_lints
run: cargo test --features deny-warnings,internal
working-directory: clippy_lints
- name: Test clippy_utils
run: cargo test --features deny-warnings
working-directory: clippy_utils
- name: Test rustc_tools_util
run: cargo test --features deny-warnings
working-directory: rustc_tools_util
2020-02-07 15:24:41 -06:00
2020-01-22 10:06:13 -06:00
- name: Test clippy_dev
run: cargo test --features deny-warnings
working-directory: clippy_dev
2020-02-07 15:24:41 -06:00
2020-01-22 10:06:13 -06:00
- name: Test clippy-driver
2024-02-28 16:37:00 -06:00
run: |
TOOLCHAIN=$(rustup show active-toolchain | cut -f1 -d' ')
rustup run $TOOLCHAIN bash .github/driver.sh