feat: Add ranger config

This commit is contained in:
2025-09-08 10:43:59 +02:00
parent abccae479f
commit dfa1fb7190
34 changed files with 4988 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
name: Python tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: pytest -q