Add kibbutz option to local games and fix credits link colours #17
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 | |
on: | |
- push | |
- pull_request | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check Format | |
run: cargo fmt --check | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install alsa | |
run: sudo apt update; sudo apt install libasound2-dev | |
- name: install cargo-all-features | |
run: cargo install cargo-all-features | |
- name: Run Tests | |
run: cargo test-all-features | |
perft: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Perft | |
run: cargo run --release --bin perft |