Skip to content

feat: engine improvements and remove crab2d-ai crate #29

feat: engine improvements and remove crab2d-ai crate

feat: engine improvements and remove crab2d-ai crate #29

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
quality:
name: Rust quality checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install system dependencies
run: sudo apt-get update -q && sudo apt-get install -y libasound2-dev
- name: Show Rust toolchain
run: rustup show
- name: Check formatting
run: cargo fmt --all -- --check
- name: Check workspace
run: cargo check --workspace
- name: Run tests
run: cargo test --workspace
- name: Run clippy
run: cargo clippy --workspace --all-targets -- -D warnings