Skip to content

Merge pull request #36 from greg0ire/fix-docs #70

Merge pull request #36 from greg0ire/fix-docs

Merge pull request #36 from greg0ire/fix-docs #70

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
# perform matrix testing to give us an earlier insight into issues with different versions of supported major versions of Go
matrix:
version:
- "1.20"
- "1.21"
- "1.22"
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...