feat!: change crossover API & move crossover implementations into separate modules #531
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: fmt check | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main", "development", "@*/*" ] | |
paths: | |
- 'src/**' | |
- '.github/workflows/fmt-check.yaml' | |
workflow_dispatch: | |
# Make sure CI fails on all warnings, including Clippy lints | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
fmt_check: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: fmt-check-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update toolchain | |
run: rustup update | |
- name: Run fmt | |
run: cargo fmt -v --check |