Skip to content

Add diagnostic capability #40

Add diagnostic capability

Add diagnostic capability #40

Workflow file for this run

name: Checks
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: ${{ matrix.os }} ${{ matrix.go-version}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
os-version: ['stable']
go-version: ['1.19', '1.20', '1.21', '1.22', '1.23']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
check-latest: true
cache: true
- name: Run tests
run: go test ./...