Skip to content

Commit 8cda3a4

Browse files
committed
Debug
1 parent 21cd4df commit 8cda3a4

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed

.github/workflows/test-python-install.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ jobs:
1414
env:
1515
python-test-package: python-dummy
1616
steps:
17-
- name: Get the branch name
18-
id: get_branch
19-
run: echo "BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
17+
- name: Get action path
18+
run: echo "${{ github.repository }}@${{ github.ref_name }}"
2019

2120
- uses: actions/checkout@v4
2221

@@ -31,21 +30,21 @@ jobs:
3130
run:
3231
pip install ${{ env.python-test-package }}
3332

34-
- name: Test Action usage
35-
uses: "${{ github.repository }}@${{ github.ref_name }}"
36-
with:
37-
python-root-list: "./tests/*.py ./tests/subtest/*.py"
38-
use-black: true
39-
use-isort: true
40-
use-mypy: true
41-
use-pycodestyle: true
42-
use-pydocstyle: true
43-
extra-pycodestyle-options: "--max-line-length=88"
44-
use-pylint: false
45-
use-flake8: false
46-
use-vulture: true
47-
python-version: ${{ matrix.python-version }}
48-
use-external-python: ${{ matrix.use-external-python }}
33+
# - name: Test Action usage
34+
# uses: "${{ github.repository }}@${{ github.ref_name }}"
35+
# with:
36+
# python-root-list: "./tests/*.py ./tests/subtest/*.py"
37+
# use-black: true
38+
# use-isort: true
39+
# use-mypy: true
40+
# use-pycodestyle: true
41+
# use-pydocstyle: true
42+
# extra-pycodestyle-options: "--max-line-length=88"
43+
# use-pylint: false
44+
# use-flake8: false
45+
# use-vulture: true
46+
# python-version: ${{ matrix.python-version }}
47+
# use-external-python: ${{ matrix.use-external-python }}
4948

5049
- name: Check if test dependency exists after execution
5150
description: "If use-external-python is set, then python test package should be installed. False otherwise"

0 commit comments

Comments
 (0)