Skip to content

Commit 6c73fd1

Browse files
JohnTitorcathay4t
authored andcommitted
Drop actions-rs actions
Signed-off-by: Yuki Okushi <[email protected]>
1 parent 17a0fa7 commit 6c73fd1

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/clippy-rustfmt.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ jobs:
1919
- uses: actions/checkout@v3
2020

2121
- name: Install Rust Nightly
22-
uses: actions-rs/toolchain@v1
23-
with:
24-
toolchain: nightly
25-
override: true
26-
components: rustfmt, clippy
22+
run: |
23+
rustup override set nightly
24+
rustup update nightly
25+
rustup component add rustfmt clippy
2726
2827
- name: rustfmt
2928
run: cargo fmt --all -- --check

.github/workflows/main.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@ jobs:
1616
- uses: actions/checkout@v3
1717

1818
- name: Install Rust Stable
19-
uses: actions-rs/toolchain@v1
20-
with:
21-
toolchain: stable
22-
override: true
19+
run: |
20+
rustup override set stable
21+
rustup update stable
2322
2423
- name: Test with default feature
2524
run: cargo test

0 commit comments

Comments
 (0)