diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 4076198..738a606 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -27,7 +27,7 @@ jobs: - run: pip install -e . # install and run pdoc - run: pip install pdoc - - run: pdoc -o docs/ + - run: pdoc configen -o docs/ - uses: actions/upload-pages-artifact@v1 with: diff --git a/.github/workflows/project-actions.yml b/.github/workflows/project-actions.yml index 85ddad8..a0b8f90 100644 --- a/.github/workflows/project-actions.yml +++ b/.github/workflows/project-actions.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, 3.10] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 @@ -25,7 +25,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install flake8 pytest + python -m pip install flake8 pytest coverage if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: install package run: |