|
8 | 8 |
|
9 | 9 | jobs:
|
10 | 10 | rustfmt:
|
11 |
| - strategy: |
12 |
| - fail-fast: false |
13 |
| - matrix: |
14 |
| - # Breaking changes like this might be mixed into the future stable versions. |
15 |
| - # https://github.com/rust-lang/rustfmt/pull/3632 |
16 |
| - channel: |
17 |
| - - 1.42.0 |
18 |
| - - stable |
19 |
| - |
20 |
| - name: Rustfmt (${{ matrix.channel }}) |
| 11 | + name: Rustfmt |
21 | 12 | runs-on: ubuntu-18.04
|
22 | 13 |
|
23 | 14 | steps:
|
24 | 15 | - name: Checkout
|
25 | 16 | uses: actions/checkout@v2
|
26 | 17 |
|
27 |
| - - name: Setup ${{ matrix.channel }}-x86_64-unknown-linux-gnu |
| 18 | + - name: Setup 1.42.0-x86_64-unknown-linux-gnu |
28 | 19 | uses: actions-rs/toolchain@v1
|
29 | 20 | with:
|
30 |
| - toolchain: ${{ matrix.channel }}-x86_64-unknown-linux-gnu |
| 21 | + toolchain: 1.42.0-x86_64-unknown-linux-gnu |
31 | 22 | override: true
|
32 | 23 | profile: minimal
|
33 | 24 | components: rustfmt
|
|
54 | 45 | - 1.42.0-x86_64-pc-windows-gnu
|
55 | 46 | - 1.42.0-x86_64-apple-darwin
|
56 | 47 | - 1.42.0-x86_64-unknown-linux-gnu
|
57 |
| - - stable-x86_64-pc-windows-msvc |
58 |
| - - stable-x86_64-pc-windows-gnu |
59 |
| - - stable-x86_64-apple-darwin |
60 |
| - - stable-x86_64-unknown-linux-gnu |
61 |
| - - beta-x86_64-pc-windows-msvc |
62 |
| - - beta-x86_64-pc-windows-gnu |
63 |
| - - beta-x86_64-apple-darwin |
64 |
| - - beta-x86_64-unknown-linux-gnu |
65 | 48 | include:
|
66 | 49 | - toolchain: 1.42.0-x86_64-pc-windows-msvc
|
67 | 50 | os: windows-latest
|
|
71 | 54 | os: macOS-latest
|
72 | 55 | - toolchain: 1.42.0-x86_64-unknown-linux-gnu
|
73 | 56 | os: ubuntu-18.04
|
74 |
| - - toolchain: stable-x86_64-pc-windows-msvc |
75 |
| - os: windows-latest |
76 |
| - - toolchain: stable-x86_64-pc-windows-gnu |
77 |
| - os: windows-latest |
78 |
| - - toolchain: stable-x86_64-apple-darwin |
79 |
| - os: macOS-latest |
80 |
| - - toolchain: stable-x86_64-unknown-linux-gnu |
81 |
| - os: ubuntu-18.04 |
82 |
| - - toolchain: beta-x86_64-pc-windows-msvc |
83 |
| - os: windows-latest |
84 |
| - - toolchain: beta-x86_64-pc-windows-gnu |
85 |
| - os: windows-latest |
86 |
| - - toolchain: beta-x86_64-apple-darwin |
87 |
| - os: macOS-latest |
88 |
| - - toolchain: beta-x86_64-unknown-linux-gnu |
89 |
| - os: ubuntu-18.04 |
90 | 57 |
|
91 | 58 | name: ${{ matrix.toolchain }}
|
92 | 59 | runs-on: ${{ matrix.os }}
|
|
0 commit comments