Skip to content

Chore(dashboard/pipelines): No error on arbitrary step (#58) #125

Chore(dashboard/pipelines): No error on arbitrary step (#58)

Chore(dashboard/pipelines): No error on arbitrary step (#58) #125

Workflow file for this run

name: Go Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run Go Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
- name: Run Go Tests
run: go test ./...