Skip to content

feat: begin implementating black linter #5

feat: begin implementating black linter

feat: begin implementating black linter #5

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt && pip install -r requirements.dev.txt
- name: Run Tests
run: pytest tests