run e2e when e2e.yml itself is updated. #11
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
dnf-install: &with-dnf | | |
dnf install -y zsh perl | |
fedora-init: *with-dnf | |
almalinux-init: *with-dnf | |
rockylinux-init: *with-dnf | |
debian-init: &with-apt | | |
apt-get update -y | |
apt-get install -y zsh perl curl | |
ubuntu-init: *with-apt | |
alpine-init: | | |
apk add zsh perl | |
opensuse-init: | | |
zypper install -y zsh perl |