Skip to content

Fix snippet marker comment #153

Fix snippet marker comment

Fix snippet marker comment #153

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
defaults:
run:
working-directory: src/
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.20.0'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...