Skip to content

chore(deps): bump flask-cors from 4.0.1 to 5.0.0 #477

chore(deps): bump flask-cors from 4.0.1 to 5.0.0

chore(deps): bump flask-cors from 4.0.1 to 5.0.0 #477

name: common PR
on:
pull_request:
paths:
- "common/**"
- "requirements*txt"
jobs:
test-unit-python:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8.x', '3.9.x', '3.10.x']
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install_deps && pip3 uninstall -y amundsen-common
working-directory: ./common
- name: Run python unit tests
run: make test
working-directory: ./common