27 lines
602 B
YAML
Raw Normal View History

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]
runs-on: rust-bookworm
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Run challenge
env:
DAY_FOLDER: day${{ matrix.day_number }}
INPUT_BASE64: ${{ vars[format('INPUT_DAY{0}', matrix.day_number) }}
run: |
echo $INPUT_BASE64 | base64 --decode > /tmp/input
cd $DAY_FOLDER
cargo run --release input