Fix critical bugs and enhance model coverage in generate_model_size_report.py script #396
This file contains hidden or 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 | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| name: lint/style-and-typos | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Black Formatting Check | |
| uses: psf/black@stable | |
| with: | |
| options: "-S -C --check --diff" | |
| - name: Spell Check | |
| uses: crate-ci/typos@master | |
| with: | |
| config: ./.github/workflows/typos.toml |