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 d03c3e9 commit 6f8820fCopy full SHA for 6f8820f
.github/workflows/tests.yml
@@ -42,6 +42,29 @@ jobs:
42
files: ./coverage.out
43
fail_ci_if_error: false
44
45
+ install:
46
+ name: Install
47
+ strategy:
48
+ matrix:
49
+ include:
50
+ - os: ubuntu-latest
51
+ script: ./scripts/install.sh
52
+ shell: bash
53
+ - os: windows-latest
54
+ script: ./scripts/install-windows.ps1
55
+ shell: pwsh
56
+ runs-on: ${{ matrix.os }}
57
+ permissions:
58
+ contents: read
59
+ steps:
60
+ - name: Checkout the latest changes
61
+ uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
62
+ with:
63
+ persist-credentials: false
64
+ - name: Attempt the installation
65
+ shell: ${{ matrix.shell }}
66
+ run: ${{ matrix.script }}
67
+
68
# Monitor code coverage and TODO/FIXME-type comments
69
health-score:
70
name: Health Score
0 commit comments