Skip to content

Commit

Permalink
Merge pull request #3 from atoomic/md
Browse files Browse the repository at this point in the history
Prep before publishing action
  • Loading branch information
happy-barney committed Apr 27, 2024
2 parents 75e5082 + 58d28cf commit 8c496e3
Show file tree
Hide file tree
Showing 483 changed files with 7,376 additions and 101,077 deletions.
91 changes: 91 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
name: "Check Workflow"

on: [push, pull_request]

jobs:

since-v520:
runs-on: ubuntu-latest
name: 'since v5.20'
outputs:
perl-versions: ${{ steps.action.outputs.perl-versions }}
steps:
- uses: actions/checkout@v4
- name: "uses perl-versions"
id: action
uses: ./
with:
since-perl: v5.20

since-520:
runs-on: ubuntu-latest
name: 'since 5.20'
outputs:
perl-versions: ${{ steps.action.outputs.perl-versions }}
steps:
- uses: actions/checkout@v4
- name: "uses perl-versions"
id: action
uses: ./
with:
since-perl: "5.20"

since-536-with-devel:
runs-on: ubuntu-latest
name: 'since 5.36 with devel'
outputs:
perl-versions: ${{ steps.action.outputs.perl-versions }}
steps:
- uses: actions/checkout@v4
- name: "uses perl-versions"
id: action
uses: ./
with:
since-perl: 5.36
with-devel: true

test-matrix:
runs-on: ubuntu-latest
needs:
- since-536-with-devel
strategy:
fail-fast: false
matrix:
perl-versions: ${{ fromJson (needs.since-536-with-devel.outputs.perl-versions) }}
steps:
- run: echo "Hello"

perl-tester:
runs-on: ubuntu-latest
needs:
- since-536-with-devel
name: "Perl ${{ matrix.perl-version }}"
strategy:
fail-fast: false
matrix:
perl-version: ${{ fromJson (needs.since-536-with-devel.outputs.perl-versions) }}
container:
image: perldocker/perl-tester:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v4
- run: perl -V

check:
needs:
- since-v520
- since-520
- since-536-with-devel
runs-on: ubuntu-latest
steps:

- 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"
- 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"
- name: "Testing since-536-with-devel"
run: |
[[ '${{ needs.since-536-with-devel.outputs.perl-versions }}' == '["5.36","5.38","devel"]' ]] && echo "ok"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules/
27 changes: 18 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,35 @@ if available.

## Usage

```
```yaml
jobs:
perl-versions:
runs-on: ubuntu-latest
name: List perl versions
name: List Perl versions
outputs:
perl-versions: ${{ steps.action.outputs.perl-versions }}
steps:
- name: Perl versions action step
id: action
uses: happy-barney/github-workflows/perl-versions@main
- id: action
uses: perl-actions/perl-versions@v1
with:
since-perl: "v5.20"
since-perl: v5.20

##
## Using perl-versions with perl-tester
##
test:
needs:
- perl-versions
name: "Perl ${{ matrix.perl-version }}"
strategy:
fail-fast: false
matrix:
perl-versions: ${{ fromJson (needs.perl-versions.outputs.perl-versions) }}
container:
image: perldocker/perl-tester:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v4
- run: perl -V

```

Expand All @@ -66,12 +75,12 @@ String containing JSON array with list of Perl versions.

## Usage

```
```yaml
jobs:
perl-versions:
uses: perl-actions/perl-versions/.github/workflows/perl-versions.yml@main
uses: perl-actions/perl-versions@v1
with:
since-perl: 5.10
since-perl: "5.14"

test:
needs:
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ outputs:
perl-versions:
description: "JSON containing list of perl versions"
runs:
using: node16
main: perl-versions.js
using: "node20"
main: "dist/index.js"
Loading

0 comments on commit 8c496e3

Please sign in to comment.