Skip to content

Update module gopkg.in/yaml.v1 to v3 #1465

Update module gopkg.in/yaml.v1 to v3

Update module gopkg.in/yaml.v1 to v3 #1465

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/[email protected]
- name: Run tests
run: |
ginkgo run ./...