update unit tests #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "`dltflow` Test Suite" | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- v*.* | |
- prod | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Use Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: 'Checkout & Build.Reason: ${{ env.Build.Reason }} & Build.SourceBranchName: ${{ env.Build.SourceBranchName }}' | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: true | |
clean: true | |
- name: "Install dependencies" | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox wheel build setuptools | |
python -m pip install -r requirements.txt | |
python -m pip install -r dev-requirements.txt | |
pip install -e . | |
- name: Run Unit Tests | |
run: tox -p -e $(tox -l | grep $(echo ${{ matrix.python-version }} | sed 's/\.//g') | paste -sd "," -) -vv | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4.0.1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
docs: | |
runs-on: ubuntu-latest | |
needs: | |
- tests | |
permissions: | |
contents: write | |
name: "Docs to GH Pages" | |
steps: | |
- name: "Checkout repo" | |
uses: "actions/checkout@v2" | |
- name: "Set up Python" | |
uses: "actions/setup-python@v2" | |
with: | |
python-version: "3.11" | |
- name: "Make docs" | |
uses: ammaraskar/sphinx-action@7.1.2 | |
with: | |
docs-folder: "docs/" | |
- name: "Deploy docs" | |
uses: peaceiris/actions-gh-pages@v4 | |
if: github.ref == 'refs/heads/main' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/_build/html |