Skip to content

Update CI/CD Workflows #51

Update CI/CD Workflows

Update CI/CD Workflows #51

Workflow file for this run

name: Python CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
name: Test with Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Clear pip cache and install dependencies
run: |
python -m pip cache purge
python -m pip install --upgrade pip
pip install -r requirements.txt --no-cache-dir
- name: Run tests
run: |
pytest tests/