Skip to content

build(deps): upgrade Go toolchain #33

build(deps): upgrade Go toolchain

build(deps): upgrade Go toolchain #33

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- master
- feature/*
- bugfix/*
tags:
- "*"
pull_request:
branches:
- master
- feature/*
- bugfix/*
- refactor/*
- chore/*
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.26.2"]
steps:
- name: Checkout repo
uses: actions/checkout@v6.0.2
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v6.4.0
with:
go-version: ${{ matrix.go }}
- name: Running Tests
run: make ci_tests
- name: Upload coverage report
uses: codecov/codecov-action@v6.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./coverage.out
flags: unittests
name: codecov-umbrella
audit:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.26.2"]
steps:
- name: Checkout repo
uses: actions/checkout@v6.0.2
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v6.4.0
with:
go-version: ${{ matrix.go }}
- name: Check for go vulnerabilities
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./...
lint:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.26.2"]
steps:
- name: Checkout repo
uses: actions/checkout@v6.0.2
- name: Set up Go
uses: actions/setup-go@v6.4.0
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v9.2.0
with:
version: v2.12.2
args: --timeout 5m0s