Skip to content

Bump black from 23.12.1 to 24.4.0 #540

Bump black from 23.12.1 to 24.4.0

Bump black from 23.12.1 to 24.4.0 #540

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install
run: |
python3 -m venv .env
source .env/bin/activate
python -m pip install -U pip
make install-dev
- name: Lint
run: |
source .env/bin/activate
make lint
tests:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', 3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python3 -m venv .env
source .env/bin/activate
make install
make install-dev
- name: Unit tests
run: |
source .env/bin/activate
make test