Update to pipx==1.3.3
#52
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 | |
on: | |
pull_request: | |
push: | |
branches: [develop, main] | |
tags: ["[0-9]+.[0-9]+.[0-9]+*"] | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11"] | |
env: | |
HATCH_ENV: "ci" | |
HATCH_VERSION: "1.7.0" | |
PIPX_VERSION: "1.3.3" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up pip cache | |
if: runner.os == 'Linux' | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }} | |
restore-keys: ${{ runner.os }}-pip- | |
- name: Install pipx for Python ${{ matrix.python-version }} | |
run: python -m pip install "pipx==$PIPX_VERSION" | |
- name: Install Hatch | |
run: pipx install "hatch==$HATCH_VERSION" | |
- name: Test Hatch version | |
run: | | |
HATCH_VERSION_INSTALLED=$(hatch --version) | |
echo "The HATCH_VERSION environment variable is set to $HATCH_VERSION." | |
echo "The installed Hatch version is ${HATCH_VERSION_INSTALLED##Hatch, version }." | |
case $HATCH_VERSION_INSTALLED in | |
*$HATCH_VERSION) echo "Hatch version correct." ;; | |
*) echo "Hatch version incorrect." && exit 1 ;; | |
esac | |
- name: Install dependencies | |
run: hatch env create ci | |
- name: Test virtualenv location | |
run: | | |
EXPECTED_VIRTUALENV_PATH=$GITHUB_WORKSPACE/.venv | |
INSTALLED_VIRTUALENV_PATH=$(hatch env find) | |
echo "The virtualenv should be at $EXPECTED_VIRTUALENV_PATH." | |
echo "Hatch is using a virtualenv at $INSTALLED_VIRTUALENV_PATH." | |
case "$INSTALLED_VIRTUALENV_PATH" in | |
"$EXPECTED_VIRTUALENV_PATH") echo "Correct Hatch virtualenv." ;; | |
*) echo "Incorrect Hatch virtualenv." && exit 1 ;; | |
esac | |
- name: Test that Git tag version and Python package version match | |
if: github.ref_type == 'tag' && matrix.python-version == '3.11' | |
run: | | |
GIT_TAG_VERSION=$GITHUB_REF_NAME | |
PACKAGE_VERSION=$(hatch version) | |
echo "The Python package version is $PACKAGE_VERSION." | |
echo "The Git tag version is $GIT_TAG_VERSION." | |
if [ "$PACKAGE_VERSION" = "$GIT_TAG_VERSION" ]; then | |
echo "Versions match." | |
else | |
echo "Versions do not match." && exit 1 | |
fi | |
- name: Run spell check | |
uses: streetsidesoftware/cspell-action@v2 | |
with: | |
check_dot_files: true | |
files: "**/*.md" | |
incremental_files_only: false | |
strict: true | |
- name: Run Hatch script for code quality checks | |
run: hatch run ${{ env.HATCH_ENV }}:check | |
- name: Run tests | |
run: hatch run coverage run | |
- name: Enforce test coverage | |
run: hatch run coverage report | |
- name: Build Python package | |
run: hatch build | |
- name: Publish Python package to PyPI | |
if: github.ref_type == 'tag' && matrix.python-version == '3.11' | |
run: hatch publish -n -u __token__ -a ${{ secrets.PYPI_TOKEN }} |