Fixes Python 3.8 compatabiliyt #72
Workflow file for this run
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: | |
push: | |
pull_request: | |
branches: | |
- main | |
- develop | |
concurrency: | |
group: test-${{ github.ref_name }} | |
cancel-in-progress: true | |
env: | |
PYTHONUNBUFFERED: "1" | |
FORCE_COLOR: "1" | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
- | |
name: Install Hatch | |
run: | | |
pip3 --quiet install --upgrade hatch | |
- | |
name: Lint project | |
run: | | |
hatch run lint:all | |
- | |
name: Check files with pre-commit | |
uses: pre-commit/[email protected] | |
test: | |
name: Python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
needs: | |
- lint | |
strategy: | |
fail-fast: false | |
matrix: | |
# No pikepdf wheels for pypy3.8 | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9'] | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
name: Start containers | |
run: | | |
docker compose --file ${GITHUB_WORKSPACE}/.docker/docker-compose.ci-test.yml pull --quiet | |
docker compose --file ${GITHUB_WORKSPACE}/.docker/docker-compose.ci-test.yml up --detach | |
echo "Wait for container to be started" | |
sleep 5 | |
- | |
name: Install poppler-utils | |
run: | | |
sudo apt-get update | |
sudo apt-get install --yes --no-install-recommends poppler-utils | |
- | |
name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- | |
name: Install Hatch | |
run: | | |
python3 -m pip install --upgrade pip | |
pip install --upgrade hatch | |
- | |
name: Run tests | |
run: hatch run cov | |
- | |
name: Upload coverage to Codecov | |
if: matrix.python-version == '3.10' | |
uses: codecov/codecov-action@v3 | |
with: | |
# not required for public repos, but intermittently fails otherwise | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- | |
name: Stop containers | |
if: always() | |
run: | | |
docker compose --file ${GITHUB_WORKSPACE}/.docker/docker-compose.ci-test.yml logs | |
docker compose --file ${GITHUB_WORKSPACE}/.docker/docker-compose.ci-test.yml down | |
test-edge: | |
name: Test Gotenberg :edge | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
needs: | |
- lint | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
name: Start containers | |
run: | | |
docker compose --file ${GITHUB_WORKSPACE}/.docker/docker-compose.ci-test-edge.yml pull --quiet | |
docker compose --file ${GITHUB_WORKSPACE}/.docker/docker-compose.ci-test-edge.yml up --detach | |
echo "Wait for container to be started" | |
sleep 5 | |
- | |
name: Install poppler-utils | |
run: | | |
sudo apt-get update | |
sudo apt-get install --yes --no-install-recommends poppler-utils | |
- | |
name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: 'pip' | |
- | |
name: Install Hatch | |
run: | | |
python3 -m pip install --upgrade pip | |
pip install --upgrade hatch | |
- | |
name: Run tests | |
run: hatch run cov | |
- | |
name: Stop containers | |
if: always() | |
run: | | |
docker compose --file ${GITHUB_WORKSPACE}/.docker/docker-compose.ci-test-edge.yml logs | |
docker compose --file ${GITHUB_WORKSPACE}/.docker/docker-compose.ci-test-edge.yml down | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
needs: | |
- lint | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
- | |
name: Install Hatch | |
run: | | |
pip3 --quiet install --upgrade hatch | |
- | |
name: Build | |
run: | | |
hatch build --clean | |
- | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifacts | |
path: dist/* | |
if-no-files-found: error | |
retention-days: 7 | |
create-release: | |
name: Release | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
permissions: | |
contents: write | |
needs: | |
- build | |
- test | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
uses: actions/download-artifact@v3 | |
with: | |
name: artifacts | |
path: dist | |
- | |
name: Get latest release info | |
id: query-release-info | |
uses: release-flow/keep-a-changelog-action@v2 | |
with: | |
command: query | |
version: ${{ github.ref_name }} | |
- | |
name: Display release info | |
run: | | |
echo "Version: ${{ steps.query-release-info.outputs.version }}" | |
echo "Date: ${{ steps.query-release-info.outputs.release-date }}" | |
echo "${{ steps.query-release-info.outputs.release-notes }}" | |
- | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "dist/*.tar.gz,dist/*.whl" | |
body: ${{ steps.query-release-info.outputs.release-notes }} | |
pypi-publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
permissions: | |
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
needs: | |
- build | |
- test | |
steps: | |
- | |
uses: actions/download-artifact@v3 | |
with: | |
name: artifacts | |
path: dist | |
- | |
name: Publish build to PyPI | |
uses: pypa/[email protected] |