Skip to content

Goreleaser fix (#9) #25

Goreleaser fix (#9)

Goreleaser fix (#9) #25

Workflow file for this run

name: "Unit Test"
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
go-version: [">=1.19.0", ">=1.20.0", ">=1.21.0"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: |
go test -v -race "./..."