Skip to content

Set uid/gid

Set uid/gid #15

Workflow file for this run

#name: golangci-lint
#
#on:
# push:
# branches:
# - "main"
# pull_request:
# branches:
# - "main"
# - "develop"
#permissions:
# contents: read
# # Optional: allow read access to pull request. Use with `only-new-issues` option.
# # pull-requests: read
#
#jobs:
# golangci-lint:
# name: go-lint
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-go@v3
# - name: Set up Go 1.20
# uses: actions/setup-go@v3
# with:
# go-version: 1.20.5
# id: go
# - run: go version
#
# - name: Lint
# run: |
# curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.53.3
# go mod tidy
# ./bin/golangci-lint run -v --timeout=3m --go=1.20.5
#
# # Optional: working directory, useful for monorepos
# # working-directory: somedir
#
# # Optional: golangci-lint command line arguments.
# # args: --timeout=3m
#
# # Optional: show only new issues if it's a pull request. The default value is `false`.
# # only-new-issues: true
#
# # Optional: if set to true then the action will use pre-installed Go.
# # skip-go-installation: true
#
# # Optional: if set to true then the action don't cache or restore ~/go/pkg.
# # skip-pkg-cache: true
#
# # Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
# # skip-build-cache: true