python scripts: add shebang and make executable #34
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
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y docker-compose | |
docker-compose --version | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: run feature tests | |
run: python3 run.py --Textual --simulator --features --test --report --pseudo_tty_off --verbose | |
# note: The report is only generated to test if it can be generated without errors. |