Skip to content

Commit

Permalink
Update check.yml
Browse files Browse the repository at this point in the history
Install rust nightly toolchain
  • Loading branch information
Nyrest authored May 4, 2024
1 parent 7b17b92 commit 04727d0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy

- name: Debug build
run: cargo build --verbose
- name: Run tests
Expand All @@ -25,5 +32,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy

- name: Run build script
run: python ./pack.py

0 comments on commit 04727d0

Please sign in to comment.