Skip to content

simplify execution of python scripts in build jobs #36

simplify execution of python scripts in build jobs

simplify execution of python scripts in build jobs #36

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: ./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.