Skip to content

Go Test

Go Test #6

Workflow file for this run

name: Go Test
on: [push, pull_request]
jobs:
test:
name: Run go test
runs-on: ubuntu-latest-large
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Run tests
run: go test -v ./...