local actions in workflow

This commit is contained in:
2026-06-20 16:02:12 -05:00
parent c1535ecc5d
commit 5d7ee84720
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
name: Verify
on:
push:
jobs:
verify:
runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache
steps:
- name: Checkout code
uses: https://dock-it.dev/actions/checkout@v4
- name: Set up Go
uses: https://dock-it.dev/actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Verify Build
run: go build -v ./...
- name: Run Tests
run: go test -v ./...

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module github.com/spenc/maintainarr
go 1.25.7