Skip to content

Part 1 of day 2

Part 1 of day 2 #3

Workflow file for this run

name: Go Test
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Run tests
run: go test -v ./...