Bump certifi from 2023.7.22 to 2024.7.4 #188
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: Tests | |
on: | |
push: | |
branches: [default] | |
pull_request: | |
branches: [default] | |
jobs: | |
tests: | |
runs-on: ubuntu-20.04 | |
strategy: | |
max-parallel: 2 | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
include: | |
- python-version: 3.8 | |
tox-env: py38 | |
- python-version: 3.9 | |
tox-env: py39 | |
- python-version: 3.10 | |
tox-env: py310 | |
- python-version: 3.11 | |
tox-env: py311 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup Path | |
run: | | |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV | |
echo "PIPX_BIN_DIR=$HOME/.local/bin" >> $GITHUB_ENV | |
- name: Install Dependencies | |
run: | | |
pip3 install tox | |
- name: Run Tests | |
run: | | |
mkdir tmp | |
tox -e ${{matrix.tox-env}} | |
env: | |
EUROPEANA_API_KEY: ${{ secrets.EUROPEANA_API_KEY }} | |
doc_tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
- name: Setup Path | |
run: | | |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV | |
echo "PIPX_BIN_DIR=$HOME/.local/bin" >> $GITHUB_ENV | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install python3-venv pipx | |
pipx install poetry | |
poetry install | |
- name: Test Docs Build | |
run: | | |
cd docs | |
poetry run make clean | |
poetry run make html SPHINXOPTS="-W --keep-going -n" |