Skip to content

Got to a somewhat working breakdown of the rules (not including check… #99

Got to a somewhat working breakdown of the rules (not including check…

Got to a somewhat working breakdown of the rules (not including check… #99

Workflow file for this run

---
name: CI-Lint
on:
push:
paths:
- "lint-workflow/**"
workflow_dispatch: {}
jobs:
CI:
name: CI
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@83b7061638ee4956cf7545a6f7efe594e5ad0247
- name: Set up Python
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435
with:
python-version: "3.9"
- name: Install dependencies
working-directory: lint-workflow
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Test lint
working-directory: lint-workflow
run: pipenv run pytest tests