Skip to content

new version 0.2.4

new version 0.2.4 #93

Workflow file for this run

name: Python tests
on:
pull_request:
push:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9.13, 3.10.8, 3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements.dev.txt
- name: Run Tests
run: |
pytest
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3