Skip to content

Commit d8953e3

Browse files
committed
test both minor and patch validation levels
1 parent 8341ca2 commit d8953e3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ on: [push, pull_request]
33
jobs:
44
test:
55
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
validation-level: [minor, patch]
9+
name: Test Validation Level ${{ matrix.validation-level }}
610
steps:
711
- uses: actions/checkout@v5
812
with:
@@ -11,4 +15,5 @@ jobs:
1115
uses: ./
1216
with:
1317
plugin-path: '.github/workflows/fixtures/plugin-test/'
14-
dry-run: true
18+
dry-run: true
19+
validation-level: ${{ matrix.validation-level }}

0 commit comments

Comments
 (0)