Merge pull request #114 from nathanchance/allow-custom-mem-val #309
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
# Run several Python linters on all Python files in this repository | |
name: Lint checks | |
on: [push, pull_request] | |
jobs: | |
python: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ['3.11', '3.10', '3.9', '3.8'] | |
uses: ClangBuiltLinux/actions-workflows/.github/workflows/python_lint.yml@main | |
with: | |
python_version: ${{ matrix.version }} |