Skip to content

Add Arctic

Add Arctic #63

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- prod
pull_request:
branches:
- main
- prod
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: pip install black
- name: Lint with black
run: black --check .