Skip to content

GO-3354 subscription publish undetermined order #2925

GO-3354 subscription publish undetermined order

GO-3354 subscription publish undetermined order #2925

Workflow file for this run

name: golangci-lint
on:
pull_request:
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v1
with:
go-version: 1.22 #// doesn't work with 20
env:
GOPRIVATE: "github.com/anyproto"
- name: git config
run: git config --global url.https://${{ secrets.ANYTYPE_PAT }}@github.com/.insteadOf /~https://github.com/
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Go get
run: go get ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.7.0
with:
version: latest
only-new-issues: true
args: --timeout 25m --skip-files ".*_test.go" --skip-files "testMock/*" --verbose