Skip to content

try to github actions without parallelization #1

try to github actions without parallelization

try to github actions without parallelization #1

Workflow file for this run

name: Go Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22'
- name: Run Go tests
run: /usr/local/go/bin/go test ./... -p 1 -count=1