2020-01-21 06:46:53 -06:00
|
|
|
name: Clippy Dev Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-02-12 04:02:07 -06:00
|
|
|
branches:
|
|
|
|
- auto
|
|
|
|
- try
|
2020-01-21 06:46:53 -06:00
|
|
|
pull_request:
|
2020-02-04 11:42:45 -06:00
|
|
|
# Only run on paths, that get checked by the clippy_dev tool
|
2020-01-21 06:46:53 -06:00
|
|
|
paths:
|
2020-04-16 06:51:37 -05:00
|
|
|
- 'CHANGELOG.md'
|
2020-01-21 06:46:53 -06:00
|
|
|
- 'README.md'
|
|
|
|
- '**.stderr'
|
|
|
|
- '**.rs'
|
|
|
|
|
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
clippy_dev:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-02-07 15:24:41 -06:00
|
|
|
# Setup
|
2020-01-21 06:46:53 -06:00
|
|
|
- name: rust-toolchain
|
|
|
|
uses: actions-rs/toolchain@v1.0.3
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
target: x86_64-unknown-linux-gnu
|
|
|
|
profile: minimal
|
|
|
|
components: rustfmt
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-01-21 06:46:53 -06:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2.0.0
|
|
|
|
|
2020-02-07 15:24:41 -06:00
|
|
|
# Run
|
2020-01-21 06:46:53 -06:00
|
|
|
- name: Build
|
|
|
|
run: cargo build --features deny-warnings
|
|
|
|
working-directory: clippy_dev
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-03-31 08:13:38 -05:00
|
|
|
- name: Test limit_stderr_length
|
|
|
|
run: cargo dev limit_stderr_length
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-01-21 06:46:53 -06:00
|
|
|
- name: Test update_lints
|
|
|
|
run: cargo dev update_lints --check
|
2020-02-07 15:24:41 -06:00
|
|
|
|
2020-01-21 06:46:53 -06:00
|
|
|
- name: Test fmt
|
|
|
|
run: cargo dev fmt --check
|
2020-02-04 10:33:50 -06:00
|
|
|
|
|
|
|
# These jobs doesn't actually test anything, but they're only used to tell
|
|
|
|
# bors the build completed, as there is no practical way to detect when a
|
|
|
|
# workflow is successful listening to webhooks only.
|
|
|
|
#
|
|
|
|
# ALL THE PREVIOUS JOBS NEED TO BE ADDED TO THE `needs` SECTION OF THIS JOB!
|
|
|
|
|
|
|
|
end-success:
|
|
|
|
name: bors dev test finished
|
|
|
|
if: github.event.pusher.name == 'bors' && success()
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [clippy_dev]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Mark the job as successful
|
|
|
|
run: exit 0
|
|
|
|
|
|
|
|
end-failure:
|
|
|
|
name: bors dev test finished
|
|
|
|
if: github.event.pusher.name == 'bors' && (failure() || cancelled())
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [clippy_dev]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Mark the job as a failure
|
|
|
|
run: exit 1
|