Drop use of Kyua #14
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
name: Test | |
on: [push, pull_request] | |
jobs: | |
bash-nothing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get install bash | |
- run: ./.github/workflows/build.sh bash | |
bash-cvs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get install bash | |
- run: ./.github/workflows/build.sh bash | |
dash-nothing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get install dash | |
- run: ./.github/workflows/build.sh dash | |
dash-cvs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get install dash | |
- run: ./.github/workflows/build.sh dash | |
mksh-nothing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get install mksh | |
- run: ./.github/workflows/build.sh ksh | |
mksh-cvs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get install mksh | |
- run: ./.github/workflows/build.sh ksh | |
zsh-nothing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get install zsh | |
- run: ./.github/workflows/build.sh zsh | |
zsh-cvs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get install zsh | |
- run: ./.github/workflows/build.sh zsh |