2023-11-30 12:12:51 +11:00
|
|
|
name: "Build and test"
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: https://gitea.com/actions/checkout@v3
|
|
|
|
- name: Install nix
|
|
|
|
uses: https://github.com/cachix/install-nix-action@v23
|
|
|
|
with:
|
|
|
|
github_access_token: ${{ secrets.INPUT_GITHUB_ACCESS_TOKEN }}
|
2023-12-12 16:22:14 +11:00
|
|
|
- name: Stub data files
|
|
|
|
run: touch src/data/day{01..31}.txt
|
2023-11-30 12:12:51 +11:00
|
|
|
- name: Build package
|
|
|
|
run: nix build
|