Skip to content

Merge branch 'main' into test-selectors #29

Merge branch 'main' into test-selectors

Merge branch 'main' into test-selectors #29

Workflow file for this run

name: Go - Build and test
on: [ push ]
jobs:
build-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
cache: false
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...