Skip to content

Linting (#40)

Linting (#40) #129

Workflow file for this run

name: Run Python tests
on:
push:
path:
- "**.py"
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout https://github.com/carnarez/astdocs repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --no-cache-dir pytest pytest-cov
- name: Run pytest
run: |
python -m pytest --color=yes --cov=astdocs --cov-report term-missing --verbose