Skip to content

python scripts: add shebang and make executable #34

python scripts: add shebang and make executable

python scripts: add shebang and make executable #34

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 unit tests
run: python3 run.py --Textual --simulator --unit_tests --test --report --pseudo_tty_off --verbose
# note: The report is only generated to test if it can be generated without errors.