Skip to content

Commit

Permalink
Reset to main branch linting, with all matrix values
Browse files Browse the repository at this point in the history
  • Loading branch information
aegilops committed Oct 18, 2023
1 parent c2c374a commit d064d54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
linter: ['pyre'] # ['flake8', 'pylint', 'ruff', 'mypy', 'pytype', 'pyright', 'fixit', 'pyre']
python-version: ['3.11'] # ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
os: ['ubuntu-latest'] # [ubuntu-latest, macos-latest] # doesn't yet work on Windows
linter: ['flake8', 'pylint', 'ruff', 'mypy', 'pytype', 'pyright', 'fixit', 'pyre']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, macos-latest] # doesn't yet work on Windows
fail-fast: false

steps:
Expand All @@ -29,7 +29,7 @@ jobs:
python3 -mpip install -q flake8 pylint ruff mypy pytype pyright fixit pyre-check
python3 -mpip install -q flake8-sarif-formatter
- name: Run Python Lint
uses: advanced-security/python-lint-code-scanning-action@fix-typeshed-and-token
uses: advanced-security/python-lint-code-scanning-action@main
with:
linter: ${{ matrix.linter }}
python-version: ${{ matrix.python-version }}

0 comments on commit d064d54

Please sign in to comment.