Split CI workflow by year #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AoC 2023 | |
on: | |
pull_request: | |
paths: | |
- 'aoc-2023/**' | |
jobs: | |
aoc-2023: | |
name: AoC 2023 | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./aoc-2023 | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: cargo test | |
- name: Build | |
run: cargo build |