Skip to content

Fix comma-separated fields, fix emitted comment on unexported declarations #20

Fix comma-separated fields, fix emitted comment on unexported declarations

Fix comma-separated fields, fix emitted comment on unexported declarations #20

Workflow file for this run

name: Test Tygo
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.22.x
steps:
- name: checkout
uses: actions/checkout@v4
- name: install
uses: actions/setup-go@v5
with:
go-version: '${{ matrix.go-version }}'
- name: vet
run: go vet ./...
- name: test
run: go test -v -race ./...