Skip to content

fix compilation

fix compilation #66

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
go-version: ['1.21', '1.22']
cgo: [0, 1]
runs-on: ${{ matrix.os }}
env:
# mostly needed for artifacts
CGO_ENABLED: ${{ matrix.cgo }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./cmd/tgp
- name: Test
run: go test -v ./...
- name: Artifacts
uses: actions/upload-artifact@v4
if: env.CGO_ENABLED == 0
with:
name: target-${{ matrix.os }}-go-${{ matrix.go-version }}
path: |
tgp
tgp.exe