Aparently 0.92.2 is not the same as =0.92.2 #59
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test and Build Rust | |
on: | |
push: | |
pull_request: | |
# schedule: | |
# Check if it works with current dependencies (weekly on Friday 00:00 UTC) | |
# - cron: '0 0 * * 5' | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
components: clippy | |
override: true | |
profile: minimal | |
toolchain: stable | |
- uses: actions/checkout@v3 | |
- name: Run clippy | |
working-directory: ./gulagcleaner_rs | |
run: | | |
cargo clippy --verbose --all-targets --all-features -- -D warnings | |
cargo test --verbose --all-features |