Skip to content

chore(deps): Bump github/codeql-action from 3.26.6 to 3.26.7 #62

chore(deps): Bump github/codeql-action from 3.26.6 to 3.26.7

chore(deps): Bump github/codeql-action from 3.26.6 to 3.26.7 #62

Workflow file for this run

# SPDX-License-Identifier: MIT
name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
name: lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: '1.23.1'
- name: make verify
run: make verify
- name: make lint
run: make golangci-lint && GOLANGCI_LINT_EXTRA_ARGS=--timeout=1h make lint
- name: make test
run: make test