Ubuntu – Github action using wrong version of Python
I have the following Github action, in which I'm specifying Python 3.10: name: Unit Tests runs-on: ubuntu-latest defaults: run: shell: bash working-directory: app steps: - uses: actions/checkout@v3 - name: Install poetry run: pipx install poetry - uses: actions/setup-python@v3 with: python-version:…