chore(deps): Bump actions/upload-artifact from 65c4c4a1ddee5b72f698fdd19549f0f0fb45cf0 to 65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 #144
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
# 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.3' | |
- 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 | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |