Skip to content

ci: allow manual execution of workflow #14

ci: allow manual execution of workflow

ci: allow manual execution of workflow #14

Workflow file for this run

name: Run Tests
on: [push, workflow_dispatch]
jobs:
qualitycheck:
name: Quality Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
check-latest: true
- name: Lint code
uses: golangci/golangci-lint-action@v4
with:
version: "v1.56.2"
args: --verbose
- name: Audit code
run: |
make audit