Skip to content

Update to GoLang 1.21 #123

Update to GoLang 1.21

Update to GoLang 1.21 #123

Workflow file for this run

name: PR
on:
pull_request:
types: [opened, ready_for_review, synchronize]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Run tests
run: |
make build
make test