Skip to content

Update all dependencies (#18) #17

Update all dependencies (#18)

Update all dependencies (#18) #17

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22', '1.23']
name: Go ${{ matrix.go }} tests
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Run Tests
run: go test -v ./...