23 lines
422 B
YAML
23 lines
422 B
YAML
|
name: Build and run challenges
|
||
|
defaults:
|
||
|
run:
|
||
|
shell: sh
|
||
|
on:
|
||
|
push:
|
||
|
|
||
|
|
||
|
jobs:
|
||
|
build-and-run:
|
||
|
name: Challenge for day
|
||
|
strategy:
|
||
|
matrix:
|
||
|
day_number: [1, 2, 3, 4]
|
||
|
runs-on: rust-bookworm
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Run challenge
|
||
|
run: |
|
||
|
cd day${{ matrix.day_number }}
|
||
|
cargo run --release ./input
|