Skip to content

build(deps-dev): bump black from 22.10.0 to 23.11.0 #1607

build(deps-dev): bump black from 22.10.0 to 23.11.0

build(deps-dev): bump black from 22.10.0 to 23.11.0 #1607

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: install_system_deps
run: sudo make install_system_deps
- name: install
run: make install
- name: lint
run: make lint
- name: mypy
run: make mypy
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install_system_deps
run: sudo make install_system_deps
- name: install
run: make install
- name: test
run: make test
env:
FTP_PATH: ${{ secrets.FTP_PATH }}
- name: Upload coverage
uses: codecov/codecov-action@v3