Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update module github.com/curioswitch/go-build to v0.6.2 (#51) #122

Update module github.com/curioswitch/go-build to v0.6.2 (#51)

Update module github.com/curioswitch/go-build to v0.6.2 (#51) #122

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- "*"
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-15
- ubuntu-24.04
- windows-2025
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: curioswitch/go-build/.github/actions/setup-go@43d89fa5a241b51ac68f94cb38b12f7e92704b93 # v0.6.2
- name: run lints
# We don't have OS-specific code so would be completely repetitive to run
# lint on all of them.
if: ${{ startsWith(matrix.os, 'ubuntu-') }}
run: go run build lint
- name: run tests
run: go run build test