Fix GitHub workflow #32
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: "CI for humiologging library" | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-package: | |
name: "Build & verify package" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: "actions/setup-python@v4" | |
with: | |
python-version: "3.11" | |
- name: "Install build and twine" | |
run: "python -m pip install build twine" | |
- name: "Build package" | |
run: "python -m build" | |
- name: "List result" | |
run: "ls -l dist" | |
- name: "Check long_description" | |
run: "python -m twine check dist/*" | |
lint: | |
name: "Lint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up Python" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: "Install test dependencies" | |
# if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
set -xe | |
python -VV | |
python -m site | |
#python -m pip install --upgrade pip flit wheel | |
python -m pip install --upgrade tox | |
- name: "Lint with flake8 (critical)" | |
run: | | |
python -m tox -e flake8-critical | |
test: | |
name: "Python ${{ matrix.python-version }}" | |
needs: [lint, build-package] | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
id: cache | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: "Set up Python ${{ matrix.python-version }}" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: "Install test dependencies" | |
# if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
set -xe | |
python -VV | |
python -m site | |
python -m pip install --upgrade pip flit wheel | |
python -m pip install --upgrade virtualenv tox tox-gh-actions coverage | |
- name: "Test with tox for ${{ matrix.python-version }}" | |
run: | | |
python -m tox | |
- name: Upload coverage data | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-data | |
path: ".coverage.*" | |
if-no-files-found: ignore | |
coverage-report: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: python -Im pip install tox --upgrade coverage[toml] | |
- uses: actions/download-artifact@v3 | |
with: | |
name: coverage-data | |
- name: "Combine coverage" | |
run: | | |
set -xe | |
python -m tox -e coverage-html | |
# Report and write to summary. | |
python -Im coverage report --skip-covered --skip-empty | sed 's/^/ /' >> $GITHUB_STEP_SUMMARY | |
- name: Upload HTML report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: html-report | |
path: htmlcov |