sys-exporter/.forgejo/workflows/go-test.yml

20 lines
382 B
YAML
Raw Permalink Normal View History

2024-12-03 12:12:43 +00:00
on:
push:
branches:
- "**"
jobs:
go-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Run unit tests
run: make test
- name: Build server
run: make server
- name: Build client
run: make client