Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bca080b

Browse files
authored
Merge pull request rust-lang-ja#65 from qryxip/ja-all-enabled-drop-stable-and-beta
Drop `stable` and `beta` in the CI
2 parents 57c5ade + 2a4b1da commit bca080b

File tree

1 file changed

+3
-36
lines changed

1 file changed

+3
-36
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,17 @@ on:
88

99
jobs:
1010
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
2112
runs-on: ubuntu-18.04
2213

2314
steps:
2415
- name: Checkout
2516
uses: actions/checkout@v2
2617

27-
- name: Setup ${{ matrix.channel }}-x86_64-unknown-linux-gnu
18+
- name: Setup 1.42.0-x86_64-unknown-linux-gnu
2819
uses: actions-rs/toolchain@v1
2920
with:
30-
toolchain: ${{ matrix.channel }}-x86_64-unknown-linux-gnu
21+
toolchain: 1.42.0-x86_64-unknown-linux-gnu
3122
override: true
3223
profile: minimal
3324
components: rustfmt
@@ -54,14 +45,6 @@ jobs:
5445
- 1.42.0-x86_64-pc-windows-gnu
5546
- 1.42.0-x86_64-apple-darwin
5647
- 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
6548
include:
6649
- toolchain: 1.42.0-x86_64-pc-windows-msvc
6750
os: windows-latest
@@ -71,22 +54,6 @@ jobs:
7154
os: macOS-latest
7255
- toolchain: 1.42.0-x86_64-unknown-linux-gnu
7356
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
9057

9158
name: ${{ matrix.toolchain }}
9259
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)