Skip to content

update blog figures #31

update blog figures

update blog figures #31

# https://github.com/marketplace/actions/lint-action
name: Lint
on: push
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
- name: Run linters
uses: wearerequired/lint-action@v1
with:
auto_fix: true
black: true
black_args: "scripts codebase"
commit_message: "Automatically fix code style issues with ${linter}"