Skip to content

chore: Remove py37 support, and unify compatibility matrix from 3.8-3.9 #552

chore: Remove py37 support, and unify compatibility matrix from 3.8-3.9

chore: Remove py37 support, and unify compatibility matrix from 3.8-3.9 #552

name: search PR
on:
pull_request:
paths:
- "search/**"
- "common/**"
- "requirements*txt"
jobs:
test-unit-python:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8.x', '3.9.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 && pip3 install -e ../common
working-directory: ./search
- name: Run python unit tests
run: make test
working-directory: ./search