summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2022-12-18 10:17:09 +0100
committerMatthias Beyer <mail@beyermatthias.de>2022-12-18 11:14:00 +0100
commit451f8f9f14acb516f0f2cd6d2d3ba496fc479d29 (patch)
tree808a848398c295a3bf38ed38846b8858298aceeb
parentff2e907e91c8a6323a079bbc22709cd7328ff7cf (diff)
Replace actions-rs with dtolnay
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.github/workflows/ci.yml13
1 files changed, 4 insertions, 9 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 616d4be..3aec624 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,11 +13,9 @@ jobs:
- stable
steps:
- uses: actions/checkout@v3
- - uses: actions-rs/toolchain@v1
+ - uses: dtolnay/rust-toolchain@master
with:
- profile: minimal
toolchain: ${{ matrix.rust }}
- override: true
- uses: actions-rs/cargo@v1
with:
command: check
@@ -29,7 +27,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- - uses: actions-rs/toolchain@v1
+ - uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
- run: rustup component add rustfmt
@@ -49,11 +47,9 @@ jobs:
- stable
steps:
- uses: actions/checkout@v3
- - uses: actions-rs/toolchain@v1
+ - uses: dtolnay/rust-toolchain@master
with:
- profile: minimal
toolchain: ${{ matrix.rust }}
- override: true
- run: sudo apt-get update && sudo apt-get install -y taskwarrior
- uses: actions-rs/cargo@v1
with:
@@ -71,10 +67,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- - uses: actions-rs/toolchain@v1
+ - uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
- override: true
- uses: swatinem/rust-cache@v2
- run: rustup component add clippy
- name: cargo-clippy