feature: added support for aliases by allowing a script to be sourced… #49
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
bats-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install bats | |
run: | | |
git submodule init | |
git submodule update | |
- name: Run Bats Test | |
shell: 'script -q -e -c "bash {0}"' # work around tty issues | |
env: | |
TERM: linux # fix tput for tty issue work around | |
run: | | |
$PWD/test/bats/bin/bats --tap test |