Fix issue in CI actions and a bit of cleanup (#25) #106
This file contains hidden or 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: Rust | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| rustfmt: | |
| name: Check formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout reposistory | |
| uses: actions/checkout@main | |
| - name: Run cargo fmt | |
| run: cargo fmt --all -- --check | |
| clippy: | |
| name: Check clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout reposistory | |
| uses: actions/checkout@main | |
| - name: Run cargo clippy | |
| run: | | |
| cargo clippy --version | |
| cargo clippy --all --all-targets --all-features -- -D warnings | |
| macos-check: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Test | |
| run: cargo test | |
| ubuntu-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Test | |
| run: cargo test | |
| windows-check: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Test | |
| run: cargo test |