This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
feat: PR run #2
Workflow file for this run
This file contains 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: Unit tests | |
on: # yamllint disable-line rule:truthy | |
push: | |
paths-ignore: | |
- '*.md' | |
- 'Vagrantfile' | |
- 'Changes' | |
- 'tidyall' | |
- 'MANIFEST' | |
- 'perlcriticrc' | |
- 'perltidyrc' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
prove: | |
name: Test::More prove CLI execution | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: install and cache Perl distributions | |
uses: tecoli-com/[email protected] | |
with: | |
tools: >- | |
Class::Accessor | |
Config::Properties | |
DateTime::Tiny | |
Devel::CheckOS | |
File::Path | |
Set::Tiny | |
Term::ANSIColor | |
Test::Exception | |
Test::Pod | |
Term::ProgressBar | |
Test::TempDir::Tiny | |
Test::Warnings | |
Test::Pod::Coverage | |
- name: runs unit tests | |
run: prove -l | |
- name: runs extended unit tests | |
run: prove -l xt |