Skip to content

test gitub action

test gitub action #25

Workflow file for this run

name: Check pip install package with multiple version of python
on: [push, pull_request]
jobs:
check-requirements-install:
strategy:
matrix:
python-version: [ "3.9", "3.12" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- run: pip install -r requirements.txt