From 191f3a2ea29ea08a886823c6972fb70cafe61142 Mon Sep 17 00:00:00 2001 From: pmqs Date: Sat, 26 Aug 2023 14:37:37 +0100 Subject: [PATCH] build README.md --- .github/workflows/linux.yml | 3 ++- .github/workflows/macos.yml | 22 +++++++++++++++++++--- .github/workflows/windows.yml | 23 ++++++++++++++++++++--- 3 files changed, 41 insertions(+), 7 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index cad844fe..74ab4d8f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -63,4 +63,5 @@ jobs: run: make - name: Test - run: make test TEST_VERBOSE=1 \ No newline at end of file + run: make test TEST_VERBOSE=1 + \ No newline at end of file diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 510d63e8..83ee5724 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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 \ No newline at end of file diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index d3913b23..07d13666 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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