name: CI on: push: branches: [main] jobs: test: runs-on: ubuntu-latest steps: - run: whoami - run: python3 --version - name: Install package dependencies run: | pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit - name: Install confgen in dev mode run: pip install -e /app - name: Run tests run: pytest /app/tests/ -v --tb=short