Skip to content

Bump the go group across 2 directories with 12 updates #100

Bump the go group across 2 directories with 12 updates

Bump the go group across 2 directories with 12 updates #100

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-13
- macos-14
- ubuntu-22.04
- windows-2022
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: go.work
cache-dependency-path: "**/go.sum"
- 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