Files
.config/ranger/plugins/ranger_devicons/.github/workflows/python-tests.yml
2025-09-08 10:44:09 +02:00

22 lines
433 B
YAML

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