Skip to content

Quite a bit of overhauling things #34

Quite a bit of overhauling things

Quite a bit of overhauling things #34

Workflow file for this run

name: Checks
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
check-latest: true
cache-dependency-path: "**/*.sum"
- name: Install dependencies
run: go mod download
- name: Unit tests
run: |
go test -v ./...
- name: Gosec Security Scanner
uses: securego/gosec@master
with:
args: ./...
- name: Golangci-lint
uses: golangci/golangci-lint-action@v6.1.1
- name: TruffleHog OSS
uses: trufflesecurity/trufflehog@v3.84.2