Skip to content

Commit d515b00

Browse files
authored
Merge pull request RustLangES#29 from Lemin-n/main
Fixing clippy workflow toolchain
2 parents 7084465 + 1fcc3f9 commit d515b00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/clippy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
- uses: actions-rs/toolchain@v1
1515
with:
1616
profile: minimal
17-
toolchain: stable
17+
toolchain: nightly
1818
override: true
1919
- run: rustup component add rustfmt
2020
- uses: actions-rs/cargo@v1
2121
with:
2222
command: fmt
2323
args: --all -- --check
24-
24+
2525
leptosfmt:
2626
runs-on: ubuntu-22.04
2727
steps:
@@ -47,7 +47,7 @@ jobs:
4747
run: leptosfmt --check .
4848

4949
clippy:
50-
needs: [ fmt, leptosfmt ]
50+
needs: [fmt, leptosfmt]
5151
runs-on: ubuntu-22.04
5252
steps:
5353
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)