Skip to content

[2023] Day 24: Part A #82

[2023] Day 24: Part A

[2023] Day 24: Part A #82

Workflow file for this run

name: aoc_2023
on:
workflow_dispatch:
push:
paths:
- "common/**"
- "aoc_2023/**"
env:
CRATE: aoc_2023
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}