Skip to content

Bump version to 0.9.7 #21

Bump version to 0.9.7

Bump version to 0.9.7 #21

Workflow file for this run

name: Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go-version: ['1.24']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: go.sum
- name: Build binaries
run: |
make build
- name: Test
run: go test ./...
- name: Upload artifacts
uses: actions/upload-artifact@v4
if: success()
with:
name: binaries-${{ matrix.os }}
path: bin/*
retention-days: 1