ci: allow manual execution of workflow #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |