Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove nightly toolchain (-Zlints had been stablized since 1.74) #70

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,12 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: rust
run: |
rustup toolchain install nightly
rustup default nightly
rustup component add clippy
- name: Install dependencies
run: pip install PyOxidizer
- name: cargo check
run: cargo check
- name: cargo clippy
run: cargo clippy -Zlints -- -D warnings
run: cargo clippy

build-linux:
name: Build Linux
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ repos:
- id: cargo-check
- id: clippy
# read [lints] directive from Config.toml
args: ["-Zlints", "--", "-D", "warnings"]
args: ["--", "-D", "warnings"]
Loading