Skip to content

Commit

Permalink
remove +nightly in the commands now that we're using stable
Browse files Browse the repository at this point in the history
  • Loading branch information
NotJeremyLiu committed Feb 6, 2024
1 parent 70de599 commit 8155bdc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Run clippy
# use nightly toolchain so that we get all the latest linter features
run: cargo +nightly clippy --tests -- -D warnings
run: cargo clippy --tests -- -D warnings

format:
name: Format
Expand All @@ -76,7 +76,7 @@ jobs:

- name: Run format
# use nightly toolchain so that we get all the latest formatting features
run: cargo +nightly fmt --check
run: cargo fmt --check

schema:
name: Schema
Expand All @@ -93,7 +93,7 @@ jobs:
- name: Run schema diff check
# use nightly toolchain so that we get all the latest formatting features
run: |
cargo +nightly run --package skip-api-entry-point --bin schema
cargo run --package skip-api-entry-point --bin schema
if [[ `git status --porcelain` ]]; then
echo "Schema is different, please run make schema"
exit 1
Expand Down

0 comments on commit 8155bdc

Please sign in to comment.