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

Skip to content

Update module github.com/curioswitch/go-build to v0.6.2 #120

Update module github.com/curioswitch/go-build to v0.6.2

Update module github.com/curioswitch/go-build to v0.6.2 #120

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@b4bb86391b1e39db0dd8cad98e4d8be49c298077 # v0.6.1
- 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