Skip to content

feat: implement initial gameplay loop and controls #26

feat: implement initial gameplay loop and controls

feat: implement initial gameplay loop and controls #26

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install stable Rust toolchain with clippy
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Build
run: cargo build
- name: Run tests
run: cargo test -- --test-threads=1