aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml16
-rw-r--r--.github/workflows/msrv-rust-toolchain.toml3
2 files changed, 4 insertions, 15 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 8f3b778a..44d26788 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -10,19 +10,11 @@ on:
jobs:
check:
- name: Check
+ name: Check (msrv)
runs-on: ubuntu-latest
- strategy:
- matrix:
- rust: [stable, msrv]
steps:
- name: Checkout sources
uses: actions/checkout@v3
-
- - name: Use MSRV rust toolchain
- if: matrix.rust == 'msrv'
- run: cp .github/workflows/msrv-rust-toolchain.toml rust-toolchain.toml
-
- name: Install stable toolchain
uses: helix-editor/rust-toolchain@v1
with:
@@ -45,7 +37,7 @@ jobs:
uses: actions/checkout@v3
- name: Install stable toolchain
- uses: dtolnay/rust-toolchain@1.61
+ uses: dtolnay/rust-toolchain@1.63
- uses: Swatinem/rust-cache@v2
@@ -74,7 +66,7 @@ jobs:
uses: actions/checkout@v3
- name: Install stable toolchain
- uses: dtolnay/rust-toolchain@1.61
+ uses: dtolnay/rust-toolchain@1.63
with:
components: rustfmt, clippy
@@ -99,7 +91,7 @@ jobs:
uses: actions/checkout@v3
- name: Install stable toolchain
- uses: dtolnay/rust-toolchain@1.61
+ uses: dtolnay/rust-toolchain@1.63
- uses: Swatinem/rust-cache@v2
diff --git a/.github/workflows/msrv-rust-toolchain.toml b/.github/workflows/msrv-rust-toolchain.toml
deleted file mode 100644
index b169d31e..00000000
--- a/.github/workflows/msrv-rust-toolchain.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[toolchain]
-channel = "1.61.0"
-components = ["rustfmt", "rust-src"]