Skip to content

Merge pull request #829 from gugod/ci-e2e-tweaks2 #10

Merge pull request #829 from gugod/ci-e2e-tweaks2

Merge pull request #829 from gugod/ci-e2e-tweaks2 #10

Workflow file for this run

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:

Check failure on line 28 in .github/workflows/e2e.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/e2e.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
- 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