Skip to content

Bump black from 22.8.0 to 24.4.0 #874

Bump black from 22.8.0 to 24.4.0

Bump black from 22.8.0 to 24.4.0 #874

Workflow file for this run

name: Testing and Linting
on:
push:
paths-ignore:
- 'static/**'
- 'sample/**'
- '**.md'
pull_request:
paths-ignore:
- 'static/**'
- 'sample/**'
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox-gh-actions poetry
- name: Test with tox
run: tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON