Skip to content

DOC: Replacing git clone command with curl in notebooks. #1379

DOC: Replacing git clone command with curl in notebooks.

DOC: Replacing git clone command with curl in notebooks. #1379

Workflow file for this run

name: LintBlack
# Adapted: https://github.com/marketplace/actions/lint-action
on: [pull_request]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Python dependencies
run: pip install black[jupyter]
- name: Run linters
uses: wearerequired/lint-action@v1
with:
black: true
auto_fix: true