Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

ci(release & test workflow): replaced test matrix versions with GH variable & bumped checkout to v2 #90

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: APT Packages
run: apt install -y perl-doc ctags perltidy
- name: Super Linter Code Base
uses: github/super-linter/slim@v4
uses: github/super-linter/slim@v5
env:
FILTER_REGEX_INCLUDE: "/lib/*|/t/*|/scripts/.*.sh|updateVersion.sh"
DEFAULT_BRANCH: master
Expand All @@ -42,10 +42,7 @@ jobs:
test_matrix:
strategy:
matrix:
perl-version:
- "5.30"
- "5.34"
- "5.36"
perl-version: ${{ fromJson(vars.RTLDEV_MW_CI_PERL_MATRIX) }}

name: Test Matrix @ Perl ${{ matrix.perl-version }}
runs-on: ubuntu-latest
Expand All @@ -56,7 +53,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
Expand Down