Skip to content

Updated ci_requirements to be valid #13

Updated ci_requirements to be valid

Updated ci_requirements to be valid #13

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.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black flake8
- name: Flake8
run: flake8 .
- name: Black
run: black --check .