We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82ac7c5 commit 7fc1800Copy full SHA for 7fc1800
.github/workflows/tests.yml
@@ -48,9 +48,7 @@ jobs:
48
matrix:
49
include:
50
- os: ubuntu-latest
51
- script: ./scripts/install.sh
52
- os: windows-latest
53
- script: ./scripts/install-windows.ps1
54
runs-on: ${{ matrix.os }}
55
permissions:
56
contents: read
@@ -64,12 +62,12 @@ jobs:
64
62
shell: bash
65
63
run: |
66
set -euo pipefail
67
- ${{ matrix.script }}
+ bash ./scripts/install.sh
68
- name: Attempt the installation (Windows)
69
if: runner.os == 'Windows'
70
- shell: pwsh -NoProfile -NonInteractive
+ shell: pwsh
71
72
- & ${{ matrix.script }}
+ pwsh -NoProfile -NonInteractive -File ./scripts/install-windows.ps1
73
74
# Monitor code coverage and TODO/FIXME-type comments
75
health-score:
0 commit comments