Skip to content

fix(deps): update all non-major dependencies #575

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #575

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [ main ]
paths:
- '**/*.go'
- 'go.mod'
- 'go.sum'
- 'cmd/**'
- 'internal/**'
- 'pkg/**'
- 'Dockerfile'
- 'Makefile'
push:
branches: [ main ]
paths:
- '**/*.go'
- 'go.mod'
- 'go.sum'
- 'cmd/**'
- 'internal/**'
- 'pkg/**'
- 'Dockerfile'
- 'Makefile'
jobs:
unit:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7
with:
go-version: '1.27.0'
- name: Install dependencies
run: go mod download
- name: Run unit tests with coverage
run: |
make test
- name: Upload coverage report
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: coverage-report
path: cover.out