Add test for minimum dependencies #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests with Minimum Dependencies | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11, 3.12] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install toml | |
# Generate requirements-min.txt | |
python - <<EOF | |
import toml | |
with open('pyproject.toml', 'r') as f: | |
pyproject = toml.load(f) | |
dependencies = pyproject.get('project', {}).get('dependencies', []) | |
with open('requirements-min.txt', 'w') as f: | |
for dep in dependencies: | |
dep = dep.replace('>=', '==').split(',')[0] | |
f.write(f"{dep}\n") | |
EOF | |
# Install minimum dependencies | |
pip install -r requirements-min.txt | |
- name: Install the package | |
run: pip install . | |
- name: Run tests | |
run: pytest | |
- name: Cleanup | |
run: rm requirements-min.txt |