Skip to content

CI: upgrade actions to latest #4

CI: upgrade actions to latest

CI: upgrade actions to latest #4

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
lint:
strategy:
matrix:
go:
- stable
- oldstable
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: go test -v ./...