Skip to content

Bump black from 22.3.0 to 24.3.0 #181

Bump black from 22.3.0 to 24.3.0

Bump black from 22.3.0 to 24.3.0 #181

Workflow file for this run

name: CI
on:
push:
branches: develop
pull_request:
branches: develop
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout Repository
uses: actions/checkout@v1
- name: Set Up Python - ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python${{ matrix.python-version }} -m pip install --upgrade tox
- name: Run tests
run: |
tox -e py
- name: Upload coverage
if: matrix.python-version == 3.7
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
yml: ./codecov.yml
fail_ci_if_error: true