This repository has been archived by the owner on Oct 2, 2023. It is now read-only.
Linting seyLu/medrec #124
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
run-name: Linting ${{ github.repository }} | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Perform lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@80b2fcb96ae248b7b80d284855acf93c338a6a0a # v2.5.0 | |
with: | |
egress-policy: audit | |
- name: Checkout repository | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v3.5.3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: Install and upgrade PIP | |
run: python -m pip install --upgrade pip | |
- name: Install Dependencies | |
run: > | |
pip install | |
ruff | |
isort | |
black | |
mypy | |
- name: Ruff Linter | |
run: ruff check . --diff | |
- name: Isort Import Sorter | |
run: isort . --diff --check | |
- name: Black Formatter | |
run: black . --diff --check | |
- name: Mypy Type Checker | |
run: > | |
mypy . | |
--install-types | |
--non-interactive | |
--check-untyped-defs | |
--ignore-missing-imports |