forked from onnx/onnxmltools
-
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.
* Apply black and ruff. Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * lint Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * update ci Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * fix req Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * restore __init__.py Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * ci Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * requirements Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * fix handle Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * disable coremltools test Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * fix missing import Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * fix missing import Signed-off-by: Xavier Dupre <xadupre@microsoft.com> * import Signed-off-by: Xavier Dupre <xadupre@microsoft.com> --------- Signed-off-by: Xavier Dupre <xadupre@microsoft.com> Signed-off-by: Xavier Dupré <xadupre@users.noreply.github.com>
- Loading branch information
Showing
261 changed files
with
13,067 additions
and
6,477 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
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,16 @@ | ||
name: Black Format Checker | ||
on: [push, pull_request] | ||
jobs: | ||
black-format-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: psf/black@193ee766ca496871f93621d6b58d57a6564ff81b # stable 23.7.0 | ||
with: | ||
options: "--diff --check" | ||
src: "." | ||
ruff-format-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: chartboost/ruff-action@v1.0.0 |
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
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.