Skip to content

Bump flask from 2.0.3 to 2.2.5 in /script/sync_prod_to_gcp #4

Bump flask from 2.0.3 to 2.2.5 in /script/sync_prod_to_gcp

Bump flask from 2.0.3 to 2.2.5 in /script/sync_prod_to_gcp #4

on:
pull_request:
branches:
- develop
jobs:
ci:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
- name: Setup a local virtual environment
run: |
pip install poetry
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v3
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install
- name: Run the automated tests (for example)
run: poetry run pytest -v browse