Files
zephyr/.github/workflows/tests.yml
2025-06-20 09:51:38 +02:00

19 lines
339 B
YAML

name: Tests
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go stable
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: "Running unit tests"
run: go test ./... -v