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 77645ea commit 120f9d0Copy full SHA for 120f9d0
.github/workflows/lint.yml
@@ -20,3 +20,23 @@ jobs:
20
uses: ludeeus/action-shellcheck@master
21
env:
22
SHELLCHECK_OPTS: --severity=warning --exclude=SC1091
23
+
24
+ validate_matrix:
25
+ if: ${{ github.repository == 'kernel-patches/vmtest' }}
26
+ name: Validate matrix.py
27
+ runs-on: ubuntu-latest
28
+ env:
29
+ GITHUB_REPOSITORY_OWNER: ${{ matrix.owner }}
30
+ GITHUB_REPOSITORY: ${{ matrix.repository }}
31
+ GITHUB_OUTPUT: /dev/stdout
32
+ strategy:
33
+ matrix:
34
+ owner: ['kernel-patches', 'foo']
35
+ repository: ['bpf', 'vmtest', 'bar']
36
+ steps:
37
+ - name: Checkout repository
38
+ uses: actions/checkout@v3
39
+ - name: run script
40
+ run: |
41
+ python3 .github/scripts/matrix.py
42
0 commit comments