Skip to content

[2023] Solution for day 7 #12

[2023] Solution for day 7

[2023] Solution for day 7 #12

Workflow file for this run

name: Advent of Code 2022
on:
push:
branches:
- main
paths:
- .github/workflows/2023.yml
- 2023/**
pull_request:
paths:
- .github/workflows/2023.yml
- 2023/**
jobs:
build-2023:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "2023"
steps:
- uses: actions/checkout@v3
- name: Build
run: ./gradlew build
- name: Test
run: ./gradlew test