updated to streamline build
Some checks failed
Build and Release Core / Test and Build (push) Failing after 3m19s

This commit is contained in:
t
2026-04-02 14:28:40 -04:00
parent b14072ddb2
commit d881051f3e

View File

@@ -2,9 +2,9 @@ name: Build and Release Core
on:
push:
branches: [ main ] # Runs tests on standard pushes
branches: [ main ]
tags:
- 'v*' # Runs tests AND builds/releases on tags
- 'v*'
pull_request:
branches: [ main ]
@@ -19,7 +19,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.24' # Note: Adjusted to a currently valid Go version
go-version: '1.26.x'
- name: Run Tests
run: go test ./... -v