Skip to content
This repository was archived by the owner on Dec 28, 2024. It is now read-only.

Add solution day 24 part 2 #89

Add solution day 24 part 2

Add solution day 24 part 2 #89

Workflow file for this run

name: go test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
formatting:
name: Check Go Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Run tests
run: go test ./...