Skip to content

Try fixing Go dependencies for vulnerabilities #28

Try fixing Go dependencies for vulnerabilities

Try fixing Go dependencies for vulnerabilities #28

Workflow file for this run

name: build
on:
push:
branches:
- main
paths-ignore:
- "*.md"
- "LICENSE"
- "NOTICE"
pull_request:
paths-ignore:
- "*.md"
- "LICENSE"
- "NOTICE"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/[email protected]
with:
go-version: 1.23.6
- name: Checkout code
uses: actions/[email protected]
- name: Run unit tests
run: make tests
- name: Upload code coverage
uses: codecov/[email protected]
with:
file: ./coverage.txt
- name: Dry-run release snapshot
uses: goreleaser/[email protected]
with:
version: '~> v2'
args: release --snapshot --skip publish --clean