Skip to content

v1.7.6: add a load_content option for some workflows where being able… #306

v1.7.6: add a load_content option for some workflows where being able…

v1.7.6: add a load_content option for some workflows where being able… #306

Workflow file for this run

name: Black Code Quality
on:
push:
branches:
- 'master'
paths:
- 'archivy/**'
- '.github/workflows/black.yml'
- 'conftest.py'
- 'tests/**'
pull_request:
paths:
- 'archivy/**'
- '.github/workflows/black.yml'
- 'conftest.py'
- 'tests/**'
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install wheel
pip install -r requirements.txt
- name: Lint with black
run: |
pip install black
black --check .