Skip to content

fix: really old uncommitted code #12

fix: really old uncommitted code

fix: really old uncommitted code #12

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
name: run tests
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Checkout code
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...