Skip to content

Fix Path.FromExecutable() #23

Fix Path.FromExecutable()

Fix Path.FromExecutable() #23

Workflow file for this run

name: Test GoKit
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
test:
runs-on: ubuntu-latest
environment: testing
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Clean test cache
run: go clean -testcache
- name: Install modules
run: go mod download
- name: Run GoKit Tests
run: go test ./tests -v