Skip to content

Add GitHub actions and badges #3

Add GitHub actions and badges

Add GitHub actions and badges #3

Workflow file for this run

name: Testing
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
cache: 'pip'
architecture: 'x64'
- name: Install dependencies
run: pip install .
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest tests.py --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html