Skip to content

1. Updated Go dependencies #27

1. Updated Go dependencies

1. Updated Go dependencies #27

Workflow file for this run

name: Matrix tests
on:
push:
pull_request:
jobs:
test-matrix:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.22.x", "1.23.x", "oldstable", "stable"]
continueOnError: [false]
# include:
# - go: ">=1.23.0-rc.2"
# continueOnError: true
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: make go-dependencies
- run: make go-test
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "junit-report.xml"
if: always()