Skip to content

refactor: removed the many AoC binaries, in favour of a single main f… #103

refactor: removed the many AoC binaries, in favour of a single main f…

refactor: removed the many AoC binaries, in favour of a single main f… #103

Workflow file for this run

name: Rust - Build, Test, Run
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
BuildTestRun:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose -- --nocapture
- name: Run all
run: cargo run