Skip to content

Fix ghcr tags and fix artifact uploading #20

Fix ghcr tags and fix artifact uploading

Fix ghcr tags and fix artifact uploading #20

Workflow file for this run

name: go
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read
jobs:
go:
name: build-test-lint
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
go: ["1.22"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v4
- name: Build
run: go build -v .
- name: Test
run: go test -v .
- name: golangci-lint
uses: golangci/golangci-lint-action@v4