Skip to content

go test workflow

go test workflow #1

Workflow file for this run

name: Go test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Go 1.21.x
uses: actions/setup-go@v5
with:
go-version: '1.21.x'
- name: Install dependencies
run: |
go get .
- name: Test
run: make test