diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml new file mode 100644 index 000000000..a5ee71933 --- /dev/null +++ b/.github/workflows/test_install.yml @@ -0,0 +1,18 @@ +name: Check pip install package with multiple version of python + +on: [push, pull_request] + +jobs: + check-pip-requirements: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ "3.9", "3.10", "3.11", "3.12" ] + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + cache: 'pip' + - run: pip install -r requirements.txt