GO-5126 Migrate icons for bundled non system types #5507
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: golangci-lint | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
cache: false | |
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@v4 | |
with: | |
fetch-depth: 0 | |
- name: Go get | |
run: go get ./... | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
env: | |
GOEXPERIMENT: "rangefunc" | |
with: | |
skip-cache: true | |
version: latest | |
only-new-issues: true | |
args: --timeout 25m --verbose |