edge-connect-client/.github/workflows/test.yaml
Patrick Sy fdb931acc2
All checks were successful
test / test (push) Successful in 13s
ci: Added test workflow running on each push except tags
2025-10-07 16:10:02 +02:00

23 lines
380 B
YAML

name: test
on:
push:
branches:
- '*'
tags-ignore:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ">=1.25.1"
- name: Test code
run: make test