Merge pull request #829 from gugod/ci-e2e-tweaks2 #10
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: E2E | ||
on: | ||
workflow_dispatch: | ||
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 | ||
steps: | ||
- run: | | ||
sudo apt-get update | ||
sudo apt-get install zsh | ||
- 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 |