Skip to content

Update gh minor

Update gh minor #105

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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Set up Python
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
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