Ubuntu – Why I get No module named 'requests' within the github actions runner?
I have a gihub-actions file with a part to run pytest via poetry: build: runs-on: ubuntu-latest strategy: matrix: python-version: ['3.10',] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} -…