Skip to content

fix README.md

fix README.md #4

Workflow file for this run

name: Run Gosec
on:
workflow_dispatch:
pull_request:
types:
- closed
- opened
- reopened
- synchronize
jobs:
tests:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24.4'
- name: Run Gosec Security Scanner
run: |
go install github.com/securego/gosec/v2/cmd/gosec@latest
gosec -exclude-dir=.codesphere-internal ./...