1. Updated Go dependencies #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |