garm-provider-edge-connect/.github/workflows/go-tests.yml
Manuel Ganter 793c0b1913
All checks were successful
Go Tests / go-tests (push) Successful in 1m24s
ci / goreleaser (push) Successful in 2m47s
updated pipelines
2025-11-10 16:51:27 +01:00

30 lines
444 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 test
run: make test
- name: run build
run: make build