Skip to content

ci(workflow): add build before test #3

ci(workflow): add build before test

ci(workflow): add build before test #3

Workflow file for this run

name: Go Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Run tests
run: make build test