Skip to content

chore(deps): update actions/checkout action to v7 #20

chore(deps): update actions/checkout action to v7

chore(deps): update actions/checkout action to v7 #20

Workflow file for this run

name: Test
permissions:
contents: read
on:
push:
branches-ignore:
- '**-wip'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
# Pull requests from the same repository won't trigger this checks as they were already triggered by the push
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
strategy:
matrix:
go-version: ['1.24', '1.25', '1.26']
steps:
- uses: actions/checkout@v7
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
cache: true
cache-dependency-path: '**/go.sum'
- name: Run tests
run: make test GOTEST_FLAGS="-v"