Skip to content

Potential fix for code scanning alert no. 18: Workflow does not contain permissions #599

Potential fix for code scanning alert no. 18: Workflow does not contain permissions

Potential fix for code scanning alert no. 18: Workflow does not contain permissions #599

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24.1'
- name: Install golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.0.2
- name: Build
run: go build -v ./...
- name: Lint
run: golangci-lint run --fix
- name: Test
run: go test -v ./...