feat: Automatic CI #27

Merged
typosaurus merged 2 commits from typosaurus/26-automatic-ci into main 2026-07-27 00:13:52 +02:00
Showing only changes of commit 888abecd7f - Show all commits

21
.gitea/workflows/ci.yml Normal file
View File

@ -0,0 +1,21 @@
# retoor <retoor@molodetz.nl>
name: CI
on:
push:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run tests
run: make verify