Deactivate test because of different result in CI #48
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: Check + Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Setup Rust toolchain | |
run: | | |
rustup toolchain install stable --profile minimal --no-self-update -c clippy -c rustfmt | |
rustup default stable | |
shell: bash | |
- name: "Print Rust toolchain version" | |
run: rustc --version --verbose | |
shell: bash | |
- uses: Swatinem/rust-cache@v2 | |
- name: Fmt | |
run: cargo fmt --all -- --check | |
- name: Clippy | |
run: cargo clippy -- -D warnings | |
- name: Test | |
run: cargo test |