Skip to content

Update scalachess stuff in readme #980

Update scalachess stuff in readme

Update scalachess stuff in readme #980

Workflow file for this run

---
name: Rust
on:
- push
- pull_request
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./command
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test -- --test-threads=1
- name: Clippy
run: cargo clippy --all -- -D warnings
- name: Check formatting
run: cargo fmt -- --check