Windows Installation Script with CUDA Support #4
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: Python lint | |
on: push | |
jobs: | |
build: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
# To report GitHub Actions status checks | |
statuses: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Python Linter | |
uses: sunnysid3up/python-linter@master | |
with: | |
source: "." | |
mypy-options: "--ignore-missing-imports --show-error-codes" | |
isort-options: "-w 100" | |
strict: "low" |