Skip to content

Bump black from 23.1.0 to 24.3.0 #51

Bump black from 23.1.0 to 24.3.0

Bump black from 23.1.0 to 24.3.0 #51

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os || 'ubuntu-24.04' }}
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt update
sudo apt install libgirepository1.0-dev libgirepository-2.0-dev libcairo2-dev -y
pip install -r requirements.txt
pip install tox-gh-actions
- name: Test with tox
run: tox