Skip to content

Update module github.com/onsi/ginkgo/v2 to v2.19.0 #1245

Update module github.com/onsi/ginkgo/v2 to v2.19.0

Update module github.com/onsi/ginkgo/v2 to v2.19.0 #1245

Workflow file for this run

name: Unit tests
on:
push:
branches:
- master
pull_request:
jobs:
unit-tests:
strategy:
matrix:
# Match this version to the maintained FIPS version in packages at https://github.com/kairos-io/packages/blob/main/packages/toolchain-go/collection.yaml#L63
go-version: ["1.19.10", "1.20", "1.21"]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo@v2.5.0
- name: Run tests
run: |
ginkgo run ./...