Skip to content

Commit

Permalink
Merge pull request #7 from perl-actions/hpb/github-actions
Browse files Browse the repository at this point in the history
Fix check after v5.40
  • Loading branch information
happy-barney authored Jul 2, 2024
2 parents d177fac + a2c731a commit ca962b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ jobs:

- name: "Testing since-v520"
run: |
[[ '${{ needs.since-v520.outputs.perl-versions }}' == '["5.20","5.22","5.24","5.26","5.28","5.30","5.32","5.34","5.36","5.38"]' ]] && echo "ok"
[[ '${{ needs.since-v520.outputs.perl-versions }}' == '["5.20","5.22","5.24","5.26","5.28","5.30","5.32","5.34","5.36","5.38","5.40"]' ]] && echo "ok"
- name: "Testing since-520"
run: |
[[ '${{ needs.since-520.outputs.perl-versions }}' == '["5.20","5.22","5.24","5.26","5.28","5.30","5.32","5.34","5.36","5.38"]' ]] && echo "ok"
[[ '${{ needs.since-520.outputs.perl-versions }}' == '["5.20","5.22","5.24","5.26","5.28","5.30","5.32","5.34","5.36","5.38","5.40"]' ]] && echo "ok"
- name: "Testing since-536-with-devel"
run: |
[[ '${{ needs.since-536-with-devel.outputs.perl-versions }}' == '["5.36","5.38","devel"]' ]] && echo "ok"
[[ '${{ needs.since-536-with-devel.outputs.perl-versions }}' == '["5.36","5.38","5.40","devel"]' ]] && echo "ok"

0 comments on commit ca962b8

Please sign in to comment.