Skip to content

Bump black from 22.12.0 to 23.3.0 (#157) #144

Bump black from 22.12.0 to 23.3.0 (#157)

Bump black from 22.12.0 to 23.3.0 (#157) #144

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2.3.5
- name: Set up Python
uses: actions/setup-python@v2.2.2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip and install dev requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint
run: make lint
- name: Test
run: tox