Skip to content

Commit

Permalink
Revert "move cd's one level before"
Browse files Browse the repository at this point in the history
This reverts commit f6017c3.
  • Loading branch information
agoscinski committed Jul 19, 2024
1 parent eb17309 commit b4e7483
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -44,15 +44,16 @@ jobs:
pip install -r requirements.txt
# Change plugin_name to test we're not specific to "aiida-diff"
cookiecutter --no-input . plugin_name=${PLUGIN_NAME}
cd ${PLUGIN_NAME}
env:
PLUGIN_NAME: aiida-ck

- name: Run test suite
env:
# show timings of tests
PYTEST_ADDOPTS: "--durations=0"
PLUGIN_NAME: aiida-ck
run: |
cd ${PLUGIN_NAME}
hatch test -v
docs:
@@ -72,11 +73,11 @@ jobs:
pip install -r requirements.txt
# Change plugin_name to test we're not specific to "aiida-diff"
cookiecutter --no-input . plugin_name=${PLUGIN_NAME}
cd ${PLUGIN_NAME}
- name: Build docs
env:
PLUGIN_NAME: aiida-ck
run: |
cd ${PLUGIN_NAME}
hatch run docs:build
static-code-analysis:
@@ -96,7 +97,9 @@ jobs:
pip install -r requirements.txt
# Change plugin_name to test we're not specific to "aiida-diff"
cookiecutter --no-input . plugin_name=${PLUGIN_NAME}
cd ${PLUGIN_NAME}
- name: Run formatter and linter
env:
PLUGIN_NAME: aiida-ck
run: |
cd ${PLUGIN_NAME}
hatch fmt

0 comments on commit b4e7483

Please sign in to comment.