Skip to content

Bump black from 23.3.0 to 24.3.0 #31

Bump black from 23.3.0 to 24.3.0

Bump black from 23.3.0 to 24.3.0 #31

Workflow file for this run

name: Upload coverage
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.10']
steps:
- name: Clone Repository (Latest)
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install pytest
python -m pip install pytest-cov
- name: Test with pytest
run: |
python -m pytest --cov --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml
flags: ubuntu-latest, ${{ matrix.python-version }}
fail_ci_if_error: false