Skip to content

Commit cb888a7

Browse files
authored
Merge pull request #79 from alex-feel/alex-feel-dev
Fix job names after removing python-version matrix
2 parents 856aeb4 + 1283a00 commit cb888a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
CHANGED_FILES=$(git diff --name-only origin/${{ github.base_ref }}...HEAD || echo "")
3939
4040
# Check if any test-relevant files changed
41-
TEST_PATTERNS="scripts/ tests/ pyproject.toml .github/workflows/test.yml"
41+
TEST_PATTERNS="scripts/ tests/ pyproject.toml \\.github/workflows/test\\.yml"
4242
SHOULD_TEST=false
4343
4444
for pattern in $TEST_PATTERNS; do
@@ -70,7 +70,7 @@ jobs:
7070
fi
7171
7272
test:
73-
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }}
73+
name: Test Python on ${{ matrix.os }}
7474
needs: status-check
7575
if: needs.status-check.outputs.should-test == 'true'
7676
runs-on: ${{ matrix.os }}
@@ -84,7 +84,7 @@ jobs:
8484
- name: Checkout code
8585
uses: actions/checkout@v4
8686

87-
- name: Set up Python ${{ matrix.python-version }}
87+
- name: Set up Python
8888
uses: actions/setup-python@v5
8989
with:
9090
python-version-file: pyproject.toml
@@ -105,7 +105,7 @@ jobs:
105105
if: always()
106106
uses: actions/upload-artifact@v4
107107
with:
108-
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
108+
name: test-results-${{ matrix.os }}
109109
path: test-results.xml
110110

111111
- name: Upload coverage reports

0 commit comments

Comments
 (0)