Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

core: fix path resolution #37

core: fix path resolution

core: fix path resolution #37

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- dev
jobs:
test-go-code:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.5'
- name: Install Dependencies
run: go get -v -t -d ./...
- name: Test Go Code
run: go test -cover ./pkg/...