chore: remove GVA documentation docx #22
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| shell-scripts: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Bash syntax check | |
| run: | | |
| set -euo pipefail | |
| bash -n scripts/*.sh | |
| - name: Offline smoke tests | |
| run: | | |
| set -euo pipefail | |
| bash tests/scripts-smoke.sh | |
| - name: Shellcheck | |
| run: | | |
| set -euo pipefail | |
| shellcheck scripts/*.sh |