Skip to content

Update manifest.json #4

Update manifest.json

Update manifest.json #4

Workflow file for this run

name: Lint
on: push
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black flake8
- name: Flake8
run: flake8 .
- name: Black
run: black --check .