-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upsteam/main'
Signed-off-by: Salman Wahib <[email protected]>
- Loading branch information
Showing
23 changed files
with
2,443 additions
and
2,368 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Run linters on code in repo | ||
# * shellcheck and shfmt for shell scripts | ||
# * various tools for Python scripts | ||
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 }} | ||
shellcheck: | ||
uses: ClangBuiltLinux/actions-workflows/.github/workflows/shellcheck.yml@main | ||
shfmt: | ||
uses: ClangBuiltLinux/actions-workflows/.github/workflows/shfmt.yml@main |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
/.idea/ | ||
/build/ | ||
/venv/ | ||
*.pyc | ||
llvm-project/ | ||
build/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[style] | ||
based_on_style = pep8 | ||
column_limit = 100 |
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
Oops, something went wrong.