]> git.lizzy.rs Git - rust.git/blob - .github/workflows/clippy_dev.yml
Merge commit '0eff589afc83e21a03a168497bbab6b4dfbb4ef6' into clippyup
[rust.git] / .github / workflows / clippy_dev.yml
1 name: Clippy Dev Test
2
3 on:
4   push:
5     branches:
6       - auto
7       - try
8   pull_request:
9     # Only run on paths, that get checked by the clippy_dev tool
10     paths:
11     - 'CHANGELOG.md'
12     - 'README.md'
13     - '**.stderr'
14     - '**.rs'
15
16 env:
17   RUST_BACKTRACE: 1
18
19 jobs:
20   clippy_dev:
21     runs-on: ubuntu-latest
22
23     steps:
24     # Setup
25     - name: Checkout
26       uses: actions/checkout@v2.3.3
27
28     # Run
29     - name: Build
30       run: cargo build --features deny-warnings
31       working-directory: clippy_dev
32
33     - name: Test update_lints
34       run: cargo dev update_lints --check
35
36     - name: Test fmt
37       run: cargo dev fmt --check
38
39   # These jobs doesn't actually test anything, but they're only used to tell
40   # bors the build completed, as there is no practical way to detect when a
41   # workflow is successful listening to webhooks only.
42   #
43   # ALL THE PREVIOUS JOBS NEED TO BE ADDED TO THE `needs` SECTION OF THIS JOB!
44
45   end-success:
46     name: bors dev test finished
47     if: github.event.pusher.name == 'bors' && success()
48     runs-on: ubuntu-latest
49     needs: [clippy_dev]
50
51     steps:
52       - name: Mark the job as successful
53         run: exit 0
54
55   end-failure:
56     name: bors dev test finished
57     if: github.event.pusher.name == 'bors' && (failure() || cancelled())
58     runs-on: ubuntu-latest
59     needs: [clippy_dev]
60
61     steps:
62       - name: Mark the job as a failure
63         run: exit 1