Skip to content

fix: sort deps deterministically to prevent worst case scenario orderings #15

fix: sort deps deterministically to prevent worst case scenario orderings

fix: sort deps deterministically to prevent worst case scenario orderings #15

Workflow file for this run

name: Go Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- run: go build ./...
- run: go test ./...
- run: go test -race ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- uses: golangci/golangci-lint-action@v3
with:
version: v1.61.0