Skip to content

chore(ci): add codeql analysis #164

chore(ci): add codeql analysis

chore(ci): add codeql analysis #164

Workflow file for this run

name: golang-test
on:
pull_request:
jobs:
gotest:
name: gotest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Go Build
run: go build -v ./.
- name: Go Test
run: go test ./... -timeout=30s -parallel=4