Test Linux Distros #4
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 Linux Distros | |
on: | |
push: | |
branches: | |
- stable # or a pattern like "*" for including all branches | |
paths: | |
- NewInstall.sh | |
tags-ignore: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run Ubuntu Test | |
run: | | |
bash testindocker.sh Ubuntu | |
- name: Run Alpine Test | |
run: | | |
bash testindocker.sh Alpine | |
- name: Run Debian Test | |
run: | | |
bash testindocker.sh Debian | |
- name: Run Fedora Test | |
run: | | |
bash testindocker.sh Fedora | |
- name: Run OpenSuSE Test | |
run: | | |
bash testindocker.sh opensuse | |