Fix the pre-commit checks by running black. #181
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
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main, refacto ] | |
name: Rust CI | |
jobs: | |
check: | |
name: Check | |
defaults: | |
run: | |
working-directory: ./rust | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
rust: [stable] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/rust_build | |
- name: check | |
shell: bash | |
run: | | |
cargo check | |
- name: clippy | |
shell: bash | |
run: | | |
cargo clippy -- -D warnings | |
- name: fmt | |
shell: bash | |
run: | | |
cargo fmt --all -- --check | |
test: | |
name: Test | |
defaults: | |
run: | |
working-directory: ./rust | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
rust: [stable] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- uses: ./.github/actions/rust_build | |
with: | |
target: test | |
- name: test | |
shell: bash | |
run: | | |
cargo test |