Skip to content

Commit cd6bf02

Browse files
committed
test all major versions in workflow
1 parent 577d39f commit cd6bf02

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

.github/workflows/selftest.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,28 @@ jobs:
2929
with:
3030
args: spdx
3131

32-
# Use latest major version of the action
33-
test-majorversion:
32+
# Use all major version of the action
33+
test-v1:
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/checkout@v4
37+
- name: REUSE Compliance Check
38+
uses: fsfe/reuse-action@v1
39+
with:
40+
args: lint
41+
test-v2:
3442
runs-on: ubuntu-latest
3543
steps:
3644
- uses: actions/checkout@v4
3745
- name: REUSE Compliance Check
3846
uses: fsfe/reuse-action@v2
3947
with:
4048
args: lint --json
49+
# test-v3:
50+
# runs-on: ubuntu-latest
51+
# steps:
52+
# - uses: actions/checkout@v4
53+
# - name: REUSE Compliance Check
54+
# uses: fsfe/reuse-action@v3
55+
# with:
56+
# args: lint --json

0 commit comments

Comments
 (0)