Skip to content

Add build badge

Add build badge #55

Workflow file for this run

name: Run
on:
push:
jobs:
run:
runs-on: ubuntu-latest
name: Day ${{ matrix.day }}
strategy:
matrix:
day: ['01', '02', '03', '04', '05', '06', '07']
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Build
run: nix-build
working-directory: 'day${{ matrix.day }}'
- name: Run with input
run: 'result/bin/day${{ matrix.day }} resources/input.txt'
working-directory: 'day${{ matrix.day }}'