Skip to content

update workflows again #10

update workflows again

update workflows again #10

Workflow file for this run

name: Format
on:
push:
pull_request:
types: [opened, reopened, synchronize]
jobs:
black:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ '3.11', '3.12', '3.13' ]
name: Black on ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up CPython ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
id: install-deps
run: |
pip install .[tests]
pip install black
- name: Run black
if: ${{ always() && steps.install-deps.outcome == 'success' }}
run: |
black --check flogin examples tests