Skip to content

Commit

Permalink
build README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs committed Aug 26, 2023
1 parent c62557e commit 191f3a2
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,5 @@ jobs:
run: make

- name: Test
run: make test TEST_VERBOSE=1
run: make test TEST_VERBOSE=1

22 changes: 19 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,39 @@ jobs:
- '5.14'
- '5.12'
- '5.10'
# - '5.8'
# - '5.6'

name: Perl ${{ matrix.perl }}
steps:

- uses: actions/checkout@v3

- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}

- name: Force regeneration of README.md
run: |
sleep 2
touch .github/badges
- name: Perl version
run: perl -V

- name: Install dependencies
run: cpanm --quiet --installdeps --notest .

- name: Help output
run: perl bin/zipdetails --help

- name: Configure
run: perl Makefile.PL

- name: cat Makefile
run: cat Makefile

- name: Build
run: perl Makefile.PL && make
run: make

- name: Test
run: make test TEST_VERBOSE=1
23 changes: 20 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,42 @@ jobs:
- '5.14'
- '5.12'
- '5.10'
# - '5.8'
# - '5.6'

name: Perl ${{ matrix.perl }}
steps:

- uses: actions/checkout@v3

- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}

- name: Force regeneration of README.md
run: |
sleep 2
touch .github/badges
- name: Perl version
run: perl -V

- name: Install dependencies
run: cpanm --installdeps --notest .

- name: chcp output
run: chcp

- name: Help output
run: perl bin/zipdetails --help

- name: Build
run: perl Makefile.PL

- name: cat Makefile
run: cat Makefile

- name: Build
run: perl Makefile.PL && make
run: make

- name: Test
run: make test TEST_VERBOSE=1

0 comments on commit 191f3a2

Please sign in to comment.