Skip to content

Chore[CI]: fix branch in workflow #237

Chore[CI]: fix branch in workflow

Chore[CI]: fix branch in workflow #237

Workflow file for this run

name: tests
on:
push:
branches: [ "main", "development" ]
pull_request:
branches: [ "main" ]
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: vet
run: go vet ./...
- name: test
run: go test -v ./...