Skip to content

perf(go): improve go core library test validators to improve test validation #167

perf(go): improve go core library test validators to improve test validation

perf(go): improve go core library test validators to improve test validation #167

Workflow file for this run

name: Build, Lint & Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.18'
- name: Run Static Check
uses: dominikh/staticcheck-action@v1.3.0
with:
version: "2022.1.3"
- name: Build and Test
run: go test ./...