Skip to content

Deps: Bump the go-modules group with 5 updates (#236) #690

Deps: Bump the go-modules group with 5 updates (#236)

Deps: Bump the go-modules group with 5 updates (#236) #690

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
workflow_dispatch: # on demand (sometimes we want to test the pipeline before opening the pr)
jobs:
unittests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v6
with:
cache: true
cache-dependency-path: go.sum
go-version-file: go.mod
- name: Execute unit tests
run: make test
- name: Upload unit test coverage to Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
files: cov-unit-tests.txt
flags: unit-tests
name: Unit Tests
token: ${{ secrets.CODECOV_TOKEN }}