RSDK-8017: linting action #25
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 | |
# concurrency: | |
# group: ${{ github.workflow }}-${{ github.ref }} | |
# on: | |
# push: | |
# branches: | |
# - main | |
# - master | |
# pull_request: | |
# branches: | |
# - main | |
# permissions: | |
# contents: read | |
# # Optional: allow read access to pull request. Use with `only-new-issues` option. | |
# pull-requests: read | |
# jobs: | |
# golangci: | |
# name: lint for linux/arm64 | |
# runs-on: [buildjet-2vcpu-ubuntu-2204-arm] | |
# container: | |
# image: ghcr.io/viamrobotics/ocean-prefilter:arm64 | |
# options: --platform linux/arm64 | |
# steps: | |
# - uses: actions/checkout@v4 | |
# with: | |
# buildvcs: false | |
# - uses: actions/setup-go@v5 | |
# with: | |
# go-version: 1.15 | |
# - name: golangci-lint | |
# uses: golangci/golangci-lint-action@v6 | |
# with: | |
# version: v1.59 | |
# args: --timeout 10m |