name: Test CI on: push: branches: - main - master jobs: test: runs-on: ubuntu-24.04 # container: # image: ghcr.io/mxmehl/python-tests-image:3.12 # env: # RUNNER_TOOL_CACHE: /toolcache steps: - uses: actions/checkout@v4 - name: Set up Python 3.10 uses: actions/setup-python@v5 with: python-version: "3.13" cache: poetry - run: python --version # test2: # runs-on: ubuntu-24.04 # steps: # - run: pwd # - run: whoami