Skip to content

tweak e2e to run when perlbrew is updated. #8

tweak e2e to run when perlbrew is updated.

tweak e2e to run when perlbrew is updated. #8

Workflow file for this run

---
name: E2E
'on':
workflow_dispatch:
pull_request:
paths:
- perlbrew
push:
paths:
- perlbrew
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
sudo apt-get update
sudo apt-get install zsh
- run: zsh ./test-e2e/run.zsh
fedora:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- run: sudo dnf install -y zsh perl
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh
macos:
strategy:
matrix:
os: ["macos-latest", "macos-13"]
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: shogo82148/[email protected]
with:
perl-version: "5.40"
- uses: actions/checkout@v4
- run: /bin/zsh ./test-e2e/run.zsh