rust/.github/workflows/clippy.yml

83 lines
2 KiB
YAML
Raw Normal View History

2020-01-22 17:06:13 +01:00
name: Clippy Test
on:
push:
# Ignore bors branches, since they are covered by `clippy_bors.yml`
branches-ignore:
- auto
- try
2020-01-22 17:06:13 +01:00
# Don't run Clippy tests, when only textfiles were modified
paths-ignore:
- 'COPYRIGHT'
- 'LICENSE-*'
- '**.md'
- '**.txt'
pull_request:
# Don't run Clippy tests, when only textfiles were modified
paths-ignore:
- 'COPYRIGHT'
- 'LICENSE-*'
- '**.md'
- '**.txt'
env:
RUST_BACKTRACE: 1
CARGO_TARGET_DIR: '${{ github.workspace }}/target'
2020-02-07 22:24:41 +01:00
NO_FMT_TEST: 1
2020-01-22 17:06:13 +01:00
jobs:
base:
runs-on: ubuntu-latest
steps:
2020-02-07 22:24:41 +01:00
# Setup
2020-01-23 14:40:37 +01:00
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
with:
github_token: "${{ secrets.github_token }}"
2020-02-07 22:24:41 +01:00
- name: Checkout
uses: actions/checkout@v2.3.3
2020-02-07 22:24:41 +01:00
- name: Install toolchain
run: rustup show active-toolchain
2020-02-07 22:24:41 +01:00
# Run
2020-01-22 17:06:13 +01:00
- name: Set LD_LIBRARY_PATH (Linux)
run: |
SYSROOT=$(rustc --print sysroot)
2020-10-09 10:40:04 +02:00
echo "LD_LIBRARY_PATH=${SYSROOT}/lib${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}" >> $GITHUB_ENV
2020-02-07 22:24:41 +01:00
2020-01-22 17:06:13 +01:00
- name: Build
run: cargo build --features deny-warnings,internal-lints
2020-02-07 22:24:41 +01:00
2020-01-22 17:06:13 +01:00
- name: Test
run: cargo test --features deny-warnings,internal-lints
2020-02-07 22:24:41 +01:00
2020-01-22 17:06:13 +01:00
- name: Test clippy_lints
run: cargo test --features deny-warnings,internal-lints
2020-01-22 17:06:13 +01:00
working-directory: clippy_lints
2020-02-07 22:24:41 +01:00
2020-01-22 17:06:13 +01:00
- name: Test rustc_tools_util
run: cargo test --features deny-warnings
working-directory: rustc_tools_util
2020-02-07 22:24:41 +01:00
2020-01-22 17:06:13 +01:00
- name: Test clippy_dev
run: cargo test --features deny-warnings
working-directory: clippy_dev
2020-02-07 22:24:41 +01:00
2020-01-22 17:06:13 +01:00
- name: Test cargo-clippy
run: ../target/debug/cargo-clippy
working-directory: clippy_workspace_tests
2020-02-07 22:24:41 +01:00
2020-01-22 17:06:13 +01:00
- name: Test clippy-driver
2020-01-26 15:13:14 +01:00
run: bash .github/driver.sh
env:
OS: ${{ runner.os }}
2020-01-22 17:06:13 +01:00
- name: Test cargo dev new lint
run: |
cargo dev new_lint --name new_early_pass --pass early
cargo dev new_lint --name new_late_pass --pass late
cargo check
git reset --hard HEAD