Skip to content

Merge pull request #15 from cibere/flow_api-to-flow #131

Merge pull request #15 from cibere/flow_api-to-flow

Merge pull request #15 from cibere/flow_api-to-flow #131

Workflow file for this run

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