Skip to content

test all on vibravox enhanced by EBEN #242

test all on vibravox enhanced by EBEN

test all on vibravox enhanced by EBEN #242

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12] # Specify the Python versions you want to test
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install pytest
- name: Run tests
run: |
python -m pytest tests/
env:
CI: true