Update actions

This commit is contained in:
Milan Nikolic
2026-06-26 14:07:14 +02:00
parent e6e1dd33f0
commit 97554ae16c
2 changed files with 45 additions and 5 deletions
+2 -5
View File
@@ -5,19 +5,16 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.23.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
CGO_ENABLED: 0
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
go-version: stable
- name: Test
run: go test
run: go test -v ./...
env:
CGO_ENABLED: 1