Skip to content

Bump actions/setup-go from 6 to 7 #164

Bump actions/setup-go from 6 to 7

Bump actions/setup-go from 6 to 7 #164

Workflow file for this run

---
name: go
on: [push, pull_request]
jobs:
lint: # <- name
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v9
test-unit: # <- name
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
- run: go run github.com/onsi/ginkgo/v2/ginkgo run -r -p --race --keep-going --output-interceptor-mode=none ./...
if: ${{ ! startsWith(matrix.os, 'windows') }}
- run: go run github.com/onsi/ginkgo/v2/ginkgo run -r -p --race --keep-going --output-interceptor-mode=none --skip-package=psnotify ./...
if: ${{ startsWith(matrix.os, 'windows') }}