Fix GitHub workflow #24
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@v2" | |
- uses: "actions/setup-python@v2" | |
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/*" | |
test: | |
name: "Python ${{ matrix.python-version }}" | |
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@v2 | |
- uses: actions/cache@v2 | |
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@v2 | |
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: "Lint with flake8" | |
run: | | |
python -m tox -e flake8-critical | |
- name: "Test with tox for ${{ matrix.python-version }}" | |
run: | | |
python -m tox | |
- name: "Combine coverage" | |
run: | | |
set -xe | |
python -m tox -e coverage-html | |
# Report and write to summary. | |
python -Im coverage report | sed 's/^/ /' >> $GITHUB_STEP_SUMMARY | |
- name: Upload HTML report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: html-report | |
path: htmlcov | |
# - name: "Upload to Codecov" | |
# uses: codecov/codecov-action@v1 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# fail_ci_if_error: true | |