Skip to content

Commit e5e8278

Browse files
committed
test
1 parent d3773ac commit e5e8278

File tree

1 file changed

+23
-22
lines changed

1 file changed

+23
-22
lines changed

.github/workflows/formatter.yml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -33,37 +33,38 @@ jobs:
3333
- name: Install npm Modules
3434
uses: ./.github/actions/install-npm-modules
3535

36-
- name: Install Python Modules
37-
uses: ./.github/actions/install-python-modules
36+
# - name: Install Python Modules
37+
# uses: ./.github/actions/install-python-modules
3838

3939
- name: Run Prettier
4040
run: npx prettier --write .
4141

42-
- name: Run Databooks
43-
if: needs.changes.outputs.python-files == 'true'
44-
run: poetry run databooks meta --rm-outs --rm-exec --yes .
42+
# - name: Run Databooks
43+
# if: needs.changes.outputs.python-files == 'true'
44+
# run: poetry run databooks meta --rm-outs --rm-exec --yes .
4545

46-
- name: Run Black
47-
if: needs.changes.outputs.python-files == 'true'
48-
run: poetry run black .
46+
# - name: Run Black
47+
# if: needs.changes.outputs.python-files == 'true'
48+
# run: poetry run black .
4949

50-
- name: Run nqQA isort
51-
if: needs.changes.outputs.python-files == 'true'
52-
run: poetry run nbqa isort .
50+
# - name: Run nqQA isort
51+
# if: needs.changes.outputs.python-files == 'true'
52+
# run: poetry run nbqa isort .
5353

54-
- name: Run nqQA pyupgrade
55-
if: needs.changes.outputs.python-files == 'true'
56-
run: poetry run nbqa pyupgrade .
54+
# - name: Run nqQA pyupgrade
55+
# if: needs.changes.outputs.python-files == 'true'
56+
# run: poetry run nbqa pyupgrade .
5757

58-
- name: Cache pre-commit
59-
uses: actions/cache@v3
60-
id: precommit_cache_id
61-
with:
62-
path: ~/.cache/pre-commit
63-
key: pre-commit-cache-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('.pre-commit-config.yaml') }}
58+
# - name: Cache pre-commit
59+
# uses: actions/cache@v3
60+
# id: precommit_cache_id
61+
# with:
62+
# path: ~/.cache/pre-commit
63+
# key: pre-commit-cache-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('.pre-commit-config.yaml') }}
6464

65-
- name: Run pre-commit
66-
run: poetry run pre-commit run --all-files
65+
# - name: Run pre-commit
66+
# if: steps.precommit_cache_id.outputs.cache-hit != 'true'
67+
# run: poetry run pre-commit run --all-files
6768

6869
- name: Commit
6970
uses: stefanzweifel/git-auto-commit-action@v4

0 commit comments

Comments
 (0)