Skip to content

Add more tests (#38) #50

Add more tests (#38)

Add more tests (#38) #50

Workflow file for this run

name: Run Static Checks and Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
strategy:
fail-fast: true
matrix:
go: ['1.23']
os: ['ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Build
run: scripts/cibuild