updated gitignore and ci/cd pipeline
All checks were successful
Build and Release Core / Test and Build (push) Successful in 3m34s

This commit is contained in:
t
2026-04-02 14:36:04 -04:00
parent d881051f3e
commit da4699fe08
3 changed files with 42 additions and 1 deletions

View File

@@ -21,6 +21,16 @@ jobs:
with:
go-version: '1.26.x'
- name: Cache Go Modules and Build Cache
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run Tests
run: go test ./... -v