Skip to content

ci: add ability to provide logging options to tests #10

ci: add ability to provide logging options to tests

ci: add ability to provide logging options to tests #10

Workflow file for this run

name: SAST
on:
push:
schedule:
- cron: "0 0 * * 0"
permissions:
contents: read
security-events: write
jobs:
go:
name: Go - Tests
runs-on: ubuntu-latest
env:
GO111MODULE: on
GOFLAGS: "-buildvcs=false"
steps:
- uses: actions/checkout@v4
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: "-no-fail -fmt sarif -out results.sarif ./..."
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif