Split string to a list in lib/Env/Assert.pm #39
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: linux | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| # tags-ignore: | |
| # - '*' | |
| workflow_dispatch: | |
| # pull_request: | |
| jobs: | |
| perl: | |
| env: | |
| # some plugins still needs this to run their tests... | |
| PERL_USE_UNSAFE_INC: 0 | |
| AUTHOR_TESTING: 1 | |
| AUTOMATED_TESTING: 1 | |
| RELEASE_TESTING: 1 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| perl-version: | |
| - 'latest' | |
| - '5.40' | |
| - '5.34' | |
| - '5.28' | |
| - '5.20' | |
| # - '5.18' No dzil | |
| # - '5.16' No dzil | |
| # - '5.14' No dzil | |
| # - '5.10' No dzil | |
| container: | |
| image: perldocker/perl-tester:${{ matrix.perl-version }} | |
| # https://hub.docker.com/r/perldocker/perl-tester | |
| # https://github.com/Perl/docker-perl-tester | |
| steps: | |
| - id: checkout | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| - id: explore-tools-perl | |
| name: perl -V | |
| run: perl -V | |
| - id: explore-environment | |
| name: Explore Environment | |
| run: | | |
| env | |
| # - name: Install Dependencies | |
| # #run: cpm install -g --no-test --show-build-log-on-failure --cpanfile cpanfile | |
| # run: cpm install -g --no-test --show-build-log-on-failure --cpanfile cpanfile | |
| # - name: Makefile.PL | |
| # run: perl Makefile.PL | |
| - id: list-dzil-authordeps-with-verbosity | |
| name: List Dist::Zilla Author Dependencies With Verbosity | |
| run: | | |
| dzil --verbose authordeps --cpanm-versions | |
| - id: install-dzil-authordeps | |
| name: Install Dist::Zilla Author Dependencies | |
| run: | | |
| dzil --verbose authordeps --cpanm-versions \ | |
| | cpanm --verbose --force --notest | |
| - id: list-deps-with-verbosity | |
| name: List Dependencies With Verbosity | |
| run: | | |
| dzil --verbose listdeps --requires --develop recommends --suggests --cpanm-version --omit-core ${{ matrix.perl-version }} | |
| - id: install-dzil-deps | |
| name: Install Dependencies | |
| run: | | |
| dzil listdeps --requires --develop recommends --suggests --cpanm-version --omit-core ${{ matrix.perl-version }} \ | |
| | cpanm --verbose --force --notest || true | |
| # - id: build-project-and-explore | |
| # name: Build Project And Explore | |
| # run: | | |
| # dzil --verbose build \ | |
| # && tree -af -I '\.git' | |
| - id: run-test-suite | |
| name: Run Tests | |
| run: dzil --verbose test --all --test-verbose |