Skip to content

ci: fix missing syntest flag #2

ci: fix missing syntest flag

ci: fix missing syntest flag #2

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Go Test
env:
# Remove once this feature is stable in Go
GOEXPERIMENT: synctest
run: |
go test -v ./...