Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

⚠️ implementing new interfaces, overall cleanup and refactoring #12

⚠️ implementing new interfaces, overall cleanup and refactoring

⚠️ implementing new interfaces, overall cleanup and refactoring #12

Workflow file for this run

name: go-test-cover
on:
pull_request:
types: [opened, edited, synchronize, reopened]
# Remove all permissions from GH_TOKEN except metadata.
permissions: {}
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
working-directory:
- ""
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # tag=v4.1.6
- name: Calculate go version
id: vars
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # tag=v5.5.0
with:
go-version: ${{ steps.vars.outputs.go_version }}
- name: Go Tests with coverage
run: |
make test-cover