chore: add tests workflow
Some checks failed
Run tests / test-project (push) Failing after 12s

This commit is contained in:
2025-09-03 12:15:30 +02:00
parent c2dbbc2fab
commit 963bbb43cd

View File

@@ -0,0 +1,14 @@
name: Run tests
on:
push:
jobs:
test-project:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v5
- name: Install build dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential
- name: Run tests
run: make test