Skip to content

refactor release script to make #15

refactor release script to make

refactor release script to make #15

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Build
run: make build
- name: Test
run: make test-all