Refactor GIV CLI: Consolidate command scripts and improve argument pa… #3
This file contains hidden or 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: Dash Shell CI | |
| on: | |
| push: | |
| branches: [ "main", "spike/config" ] | |
| pull_request: | |
| branches: [ "main", "spike/config" ] | |
| jobs: | |
| dash-shell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dash and bats | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y dash bats | |
| - name: Run Bats tests with dash | |
| run: | | |
| SHELL=/bin/dash bats tests/ |