chore(deps): update github/codeql-action action to v3.28.5 #288
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
# This workflow runs tests and checks via the makefile against the project | |
name: Make Test and Checks | |
on: | |
pull_request: | |
branches: [ main ] | |
workflow_call: | |
jobs: | |
test: | |
name: Test and Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21 | |
- name: Install Dependencies | |
run: | | |
go install honnef.co/go/tools/cmd/staticcheck@latest | |
go install github.com/securego/gosec/v2/cmd/gosec@latest | |
go install golang.org/x/tools/cmd/goimports@latest | |
- name: Make Test | |
run: | | |
make test | |
make checks | |