no solution for day 12 part 2. Will work on this later #44
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: Test | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '^1.21' | |
- name: Test utilities | |
run: go test -cover ./utils | |
- name: Test solutions | |
if: ${{ github.repository != 'devries/aoc_template' }} | |
run: go test -cover ./day* |