Skip to content

Update minor dependencies #98

Update minor dependencies

Update minor dependencies #98

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Unit Test
run: go test ./...
# Add ignored packages to the `grep -v` segment
- name: Vet
run: go list ./... | grep -v 'antlrGen$' | while read -r line; do go vet "${line}"; done
- name: Go Fmt
run: gofmt -l ./ && test -z "$(gofmt -l ./)"