summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2024-02-01 07:48:45 +0100
committerMatthias Beyer <mail@beyermatthias.de>2024-02-01 07:48:47 +0100
commit40ede3d24bee6ba1683dbe751e1b61b2b4f51ea0 (patch)
tree2dd5fd930140f39066f51c932d6e677b70313447
parentabbd836f293b451a722a60d928169205c635e60c (diff)
Remove matrix builds
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.github/workflows/msrv.yml24
1 files changed, 3 insertions, 21 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index 336bde0..ca13beb 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -6,11 +6,6 @@ jobs:
check:
name: Check
runs-on: ubuntu-latest
- strategy:
- matrix:
- rust:
- - 1.70.0
-
steps:
- name: Checkout sources
uses: actions/checkout@v4.1.1
@@ -18,7 +13,7 @@ jobs:
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
- toolchain: ${{ matrix.rust }}
+ toolchain: 1.70.0
- name: Cache
uses: Swatinem/rust-cache@v2
@@ -48,10 +43,6 @@ jobs:
needs: [check]
name: Rustfmt
runs-on: ubuntu-latest
- strategy:
- matrix:
- rust:
- - 1.70.0
steps:
- name: Checkout sources
uses: actions/checkout@v4.1.1
@@ -59,7 +50,7 @@ jobs:
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
- toolchain: ${{ matrix.rust }}
+ toolchain: 1.70.0
components: rustfmt
- name: Run cargo fmt
@@ -70,15 +61,6 @@ jobs:
needs: [check]
name: Clippy
runs-on: ubuntu-latest
- strategy:
- matrix:
- rust:
- # We run clippy only with our MSRV
- # Running newer clippy (or even from the current stable channel) would
- # randomly "break" our CI when the toolchain gets published in a new
- # version. So there's no point in running it with two or more
- # versions, MSRV should be fine.
- - 1.70.0
steps:
- name: Checkout sources
uses: actions/checkout@v4.1.1
@@ -86,7 +68,7 @@ jobs:
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
- toolchain: ${{ matrix.rust }}
+ toolchain: 1.70.0
components: clippy
- name: Cache