Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,23 @@ on:
jobs:
unit-tests:
name: unit-tests
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.23.x
- 1.24.x
# TODO: migrate to golangci-lint to v2 first:
# - 1.25.x
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@master

- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
go-version: ${{ matrix.go-version }}
cache: true # caching and restoring go modules and build outputs

- name: Test
Expand Down