Skip to content

chore(deps-dev): bump urllib3 from 1.26.18 to 1.26.19 in the pip group across 1 directory #28

chore(deps-dev): bump urllib3 from 1.26.18 to 1.26.19 in the pip group across 1 directory

chore(deps-dev): bump urllib3 from 1.26.18 to 1.26.19 in the pip group across 1 directory #28

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
environment: test
env:
DIFFBOT_TOKEN: ${{ secrets.DIFFBOT_TOKEN }}
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
max-parallel: 4
steps:
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
#----------------------------------------------
# install & configure poetry
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-in-project: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
#----------------------------------------------
# run tests
#----------------------------------------------
- name: Test with pytest
run: |
source .venv/bin/activate
pytest