You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
${{ inputs.dependencyManager }} run coverage run --concurrency=multiprocessing manage.py test --settings=${{ inputs.projectName }}.settings.ci --parallel
67
-
${{ inputs.dependencyManager }} run coverage combine
68
-
- name: Lint (flake8)
69
-
shell: bash
70
-
run: |-
71
-
cd ${{ inputs.path }}
72
-
${{ inputs.dependencyManager }} run flake8 .
73
-
if: ${{ inputs.flake }}
74
-
- name: Lint (black)
75
-
shell: bash
76
-
run: |-
77
-
cd ${{ inputs.path }}
78
-
${{ inputs.dependencyManager }} run black --check . || ${{ inputs.dependencyManager }} run black --diff .
79
-
if: ${{ inputs.black }}
80
-
- name: Lint (ruff)
81
-
shell: bash
82
-
run: |-
83
-
cd ${{ inputs.path }}
84
-
${{ inputs.dependencyManager }} run ruff check . && ${{ inputs.dependencyManager }} run ruff format --check . || ${{ inputs.dependencyManager }} run ruff format --diff .
${{ inputs.dependencyManager }} run coverage run --concurrency=multiprocessing manage.py test --settings=${{ inputs.projectName }}.settings.ci --parallel
67
+
${{ inputs.dependencyManager }} run coverage combine
68
+
- name: Lint (flake8)
69
+
shell: bash
70
+
run: |-
71
+
cd ${{ inputs.path }}
72
+
${{ inputs.dependencyManager }} run flake8 .
73
+
if: ${{ inputs.flake }}
74
+
- name: Lint (black)
75
+
shell: bash
76
+
run: |-
77
+
cd ${{ inputs.path }}
78
+
${{ inputs.dependencyManager }} run black --check . || ${{ inputs.dependencyManager }} run black --diff .
79
+
if: ${{ inputs.black }}
80
+
- name: Lint (ruff)
81
+
shell: bash
82
+
run: |-
83
+
cd ${{ inputs.path }}
84
+
${{ inputs.dependencyManager }} run ruff check . && ${{ inputs.dependencyManager }} run ruff format --check . || ${{ inputs.dependencyManager }} run ruff format --diff .
0 commit comments