We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aaf83c4 + 771e76a commit 925c595Copy full SHA for 925c595
.github/workflows/publish-pythia.yaml
@@ -73,13 +73,11 @@ jobs:
73
cp -rf --parents ./notebooks/images ./pythia
74
cp -rf --parents $(find notebooks -name "*.yml") ./pythia
75
cd ./pythia
76
- find . -name '*.ipynb' -exec nbstripout {} +
77
- find . -name '*.ipynb' -exec nbqa black {} +
78
- find . -name '*.ipynb' -exec nbqa isort {} +
79
- find . -name '*.ipynb' -exec nbqa flake8 {} +
80
- python -m black .
81
- python -m flake8 .
82
- python -m isort .
+ find ./pythia -name '*.ipynb' -exec nbstripout {} +
+ find ./pythia -name '*.ipynb' -exec nbqa black {} +
+ find ./pythia -name '*.ipynb' -exec nbqa isort {} +
+ python -m black ./pythia
+ python -m isort ./pythia
83
git config --local user.name "$GITHUB_ACTOR"
84
git config --local user.email "[email protected]"
85
git add .
0 commit comments