Update README.md #282
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: Code Health | |
on: [push] | |
jobs: | |
check-format: | |
name: Format Checker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install dependencies including dev | |
run: make install-dev | |
- name: Run format checker | |
run: make formatcheck | |
check-lint: | |
name: Lint Checker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install dependencies including dev | |
run: make install-dev | |
- name: Run linter | |
run: make lintcheck | |
# check-mypy: | |
# name: Type Checker | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check out repository code | |
# uses: actions/checkout@v4 | |
# | |
# - name: Install dependencies including dev | |
# run: make install-dev | |
# | |
# - name: Run mypy | |
# run: make typecheck |