garm-provider-edge-connect/.github/workflows/go-tests.yml
Christopher Hase 0b411dc9cf
Some checks failed
Go Tests / go-tests (push) Failing after 1m9s
feat(edge-connect): add skeleton
2025-09-01 15:39:45 +02:00

27 lines
No EOL
403 B
YAML

name: Go Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
go-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version-file: go.mod
- run: go version
- name: Run GARM Go Tests
run: make test