Skip to content

Merge pull request #199 from Worxstr/dev #1059

Merge pull request #199 from Worxstr/dev

Merge pull request #199 from Worxstr/dev #1059

Workflow file for this run

name: "Format code with Black"
on:
- "push"
- "pull_request"
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Check Formatting
run: python -m black . --check