@@ -33,37 +33,38 @@ jobs:
33
33
- name : Install npm Modules
34
34
uses : ./.github/actions/install-npm-modules
35
35
36
- - name : Install Python Modules
37
- uses : ./.github/actions/install-python-modules
36
+ # - name: Install Python Modules
37
+ # uses: ./.github/actions/install-python-modules
38
38
39
39
- name : Run Prettier
40
40
run : npx prettier --write .
41
41
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 .
45
45
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 .
49
49
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 .
53
53
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 .
57
57
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') }}
64
64
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
67
68
68
69
- name : Commit
69
70
uses : stefanzweifel/git-auto-commit-action@v4
0 commit comments