Skip to content

Commit 7fc1800

Browse files
committed
ci: invoke scripts direct inline without matrix setup
1 parent 82ac7c5 commit 7fc1800

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,7 @@ jobs:
4848
matrix:
4949
include:
5050
- os: ubuntu-latest
51-
script: ./scripts/install.sh
5251
- os: windows-latest
53-
script: ./scripts/install-windows.ps1
5452
runs-on: ${{ matrix.os }}
5553
permissions:
5654
contents: read
@@ -64,12 +62,12 @@ jobs:
6462
shell: bash
6563
run: |
6664
set -euo pipefail
67-
${{ matrix.script }}
65+
bash ./scripts/install.sh
6866
- name: Attempt the installation (Windows)
6967
if: runner.os == 'Windows'
70-
shell: pwsh -NoProfile -NonInteractive
68+
shell: pwsh
7169
run: |
72-
& ${{ matrix.script }}
70+
pwsh -NoProfile -NonInteractive -File ./scripts/install-windows.ps1
7371
7472
# Monitor code coverage and TODO/FIXME-type comments
7573
health-score:

0 commit comments

Comments
 (0)