Skip to content

chore(deps-dev): bump black from 23.12.0 to 24.3.0 #469

chore(deps-dev): bump black from 23.12.0 to 24.3.0

chore(deps-dev): bump black from 23.12.0 to 24.3.0 #469

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make deps
- name: Run tests
run: nox -s test-${{ matrix.python-version }}