Compare commits

..

No commits in common. "8bb2011f4a15c4fbfc8cf6d1e5388a307ca29378" and "9d1c501b4341ca2012085d21261e674b8de56fc5" have entirely different histories.

3 changed files with 0 additions and 24 deletions

View File

@ -1,20 +0,0 @@
name: Build
on: [push]
jobs:
gobuild:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.21.x'
- name: Build
run: go build -v ./*/*.go
- name: Display Go version
run: go version
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "This job's status is ${{ job.status }}."

View File

@ -13,7 +13,6 @@ var numbers = []string {
"six", "seven", "eight", "nine", "six", "seven", "eight", "nine",
} }
// Panic if err
func check(e error) { func check(e error) {
if e != nil { if e != nil {
panic(e) panic(e)

3
go.mod
View File

@ -1,3 +0,0 @@
module aoc2023
go 1.21.4