Skip to content

Pointing to fork

Pointing to fork #6

Workflow file for this run

name: Go test
on:
pull_request:
branches: [ main ]
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.platform}}
env:
LLVL: trace
steps:
- name: Set up Go ^1.19
uses: actions/setup-go@v2
with:
go-version: ^1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: go test ./...