Extend Documentation on Process::SubProcess::Group #57
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
# This is a basic workflow to help you get started with Actions | |
#Run configured Tests from the Test Directory | |
name: Automated Tests | |
# Controls when the action will run. Triggers the workflow pull request | |
# events but only for the master branch | |
on: | |
pull_request: | |
# Pull Request events on master branch | |
branches: | |
- master | |
workflow_dispatch: | |
branches: | |
- master | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# Configure and Run the Testing Job | |
testing: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-20.04 | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# List all installed Perl Libraries | |
- name: List all installed Perl Libraries | |
run: | | |
dpkg --get-selections | grep -i perl | sort | |
echo "Perl Version:" | |
perl --version | |
# Install missing Perl Libraries | |
- name: Install Perl Libraries | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install perlbrew libgetopt-long-descriptive-perl libcapture-tiny-perl libdata-dump-perl libpath-tiny-perl | |
sudo apt-get -y install libcpanel-json-xs-perl libjson-xs-perl libjson-perl libyaml-libyaml-perl libyaml-perl | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Starting Test Sequences | |
run: echo "Starting Test Sequences" | |
- name: Listing Directory Contents | |
run: pwd && ls -lah | |
# Test the Process::SubProcess Package | |
- name: Process::SubProcess Package Tests | |
run: t/test_subprocess.t | |
# Perfomance Tests on Process::SubProcess Package | |
- name: Process::SubProcess Package Performance Tests | |
run: t/test_performance.t | |
# Test the Process::SubProcess::Group Package | |
- name: Process::SubProcess::Group Package Tests | |
run: t/test_group.t | |
# Test the Runner Script | |
- name: Runner Script Tests | |
run: t/test_runner.t | |
# Runs a set of commands using the runners shell | |
#- name: Run a multi-line script | |
# run: | | |
# echo Add other actions to build, | |
# echo test, and deploy your project. |