Skip to content

Commit 04727d0

Browse files
authored
Update check.yml
Install rust nightly toolchain
1 parent 7b17b92 commit 04727d0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Diff for: .github/workflows/check.yml

+14
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v4
18+
- name: Install latest nightly
19+
uses: actions-rs/toolchain@v1
20+
with:
21+
toolchain: nightly
22+
override: true
23+
components: rustfmt, clippy
24+
1825
- name: Debug build
1926
run: cargo build --verbose
2027
- name: Run tests
@@ -25,5 +32,12 @@ jobs:
2532

2633
steps:
2734
- uses: actions/checkout@v4
35+
- name: Install latest nightly
36+
uses: actions-rs/toolchain@v1
37+
with:
38+
toolchain: nightly
39+
override: true
40+
components: rustfmt, clippy
41+
2842
- name: Run build script
2943
run: python ./pack.py

0 commit comments

Comments
 (0)