Skip to content

Github Actions: use latest windows worker #957

Github Actions: use latest windows worker

Github Actions: use latest windows worker #957

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@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v8
test-unit: # <- name
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go run github.com/onsi/ginkgo/v2/ginkgo run -r --keep-going --skip-package integration