Skip to content

fix: run tests on all push #2

fix: run tests on all push

fix: run tests on all push #2

Workflow file for this run

name: Go
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Test
run: go test -v ./...