Skip to content

fix(docs): Adding more options for getting started (#16) #72

fix(docs): Adding more options for getting started (#16)

fix(docs): Adding more options for getting started (#16) #72

Workflow file for this run

name: Tests
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
test:
runs-on: [ubuntu-20.04]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .'[dev]'
- name: Run tests
run: |
pytest --cov-report=xml
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.xml