issue 388 - Santa's Reindeers Need More H2O! #586
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
build-job: | |
name: Test | |
runs-on: ubuntu-latest | |
container: | |
image: perldocker/perl-tester:5.36 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install vim for Text-VimColor | |
run: apt-get install -y vim | |
- name: Install deps using cpm | |
uses: perl-actions/install-with-cpm@v1 | |
with: | |
cpanfile: 'cpanfile' | |
sudo: false | |
- name: prove | |
run: prove -lr t |