Skip to content

Back to development: 3.0.4 #22

Back to development: 3.0.4

Back to development: 3.0.4 #22

Workflow file for this run

name: Black
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.8]
steps:
# git checkout
- uses: actions/checkout@v2
# python setup
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
# python cache
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# install black
- name: install black
run: pip install black
# run black
- name: run black
run: black collective/ --check --diff