Add Gitea Actions workflow for tests
tests / test (push) Failing after 14s

This commit is contained in:
TheRaiwy
2026-07-10 13:02:04 +03:00
parent d1c611750f
commit 383ea0afd1
+23
View File
@@ -0,0 +1,23 @@
name: tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run unit tests
run: python tests/test_parse.py