Skip to content

feat: add source comixextra.com #87

feat: add source comixextra.com

feat: add source comixextra.com #87

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
strategy:
fail-fast: true
matrix:
python-version: ["3.10", "3.11"]
poetry-version: ["1.3.1"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install deps
run: poetry install
# - name: Install extra deps
# run: poetry install --extras postprocessing
- name: Run tests
run: poetry run pytest --cov=mandown --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3