Skip to content

Update CI/CD Workflows #23

Update CI/CD Workflows

Update CI/CD Workflows #23

Workflow file for this run

name: NeuroFlex CI
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
test:
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/