# The delivery gate. Nothing reaches main that has not passed it. name: CI on: pull_request: push: branches: [main] jobs: test: runs-on: ubuntu-latest # label maps to act-22.04 on this estate's runner steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.11" - name: Install run: | python -m pip install --upgrade pip pip install -r requirements-dev.txt - name: Test run: python -m pytest -q - name: The image has to build too run: docker build -t channel-exit:ci .