Skip to content

Commit

Permalink
test all major versions in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmehl committed Feb 27, 2024
1 parent 577d39f commit e8657a5
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/selftest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,28 @@ jobs:
with:
args: spdx

# Use latest major version of the action
test-majorversion:
# Use all major version of the action
test-v1:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v1
with:
args: lint --json
test-v2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v2
with:
args: lint --json
test-v3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v3
with:
args: lint --json

0 comments on commit e8657a5

Please sign in to comment.