Skip to content

Simplify the regex used to trigger the Go github action on tags #1

Simplify the regex used to trigger the Go github action on tags

Simplify the regex used to trigger the Go github action on tags #1

Workflow file for this run

name: Go
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Test
run: go test -v ./...