fix: unittests #7
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: | | |
sudo apt-get update -y | |
sudo apt-get install git -y | |
git submodule add https://github.com/bats-core/bats-core.git test/bats | |
git submodule add https://github.com/bats-core/bats-support.git test/test_helper/bats-support | |
git submodule add https://github.com/bats-core/bats-assert.git test/test_helper/bats-assert | |
- 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: | | |
export BATS_LIB_PATH="${PWD}/test":"${PWD}/test/bats":"${PWD}/test/test_helper"; $PWD/test/bats/bin/bats --tap test |