Skip to content

Update for release [email protected]

Update for release [email protected] #531

Workflow file for this run

name: CI
on:
pull_request:
branches: [master]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-24.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: '1.23'
id: go
- uses: actions/checkout@v4
- name: Build
run: go build -v ./...
- name: Test
run: CGO_ENABLED=0 go test -v ./...