Skip to content

Commit 925c595

Browse files
Merge pull request #53 from TUW-GEO/dev
fix path
2 parents aaf83c4 + 771e76a commit 925c595

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

Diff for: .github/workflows/publish-pythia.yaml

+5-7
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,11 @@ jobs:
7373
cp -rf --parents ./notebooks/images ./pythia
7474
cp -rf --parents $(find notebooks -name "*.yml") ./pythia
7575
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 .
76+
find ./pythia -name '*.ipynb' -exec nbstripout {} +
77+
find ./pythia -name '*.ipynb' -exec nbqa black {} +
78+
find ./pythia -name '*.ipynb' -exec nbqa isort {} +
79+
python -m black ./pythia
80+
python -m isort ./pythia
8381
git config --local user.name "$GITHUB_ACTOR"
8482
git config --local user.email "[email protected]"
8583
git add .

0 commit comments

Comments
 (0)