diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index 44c0980..3bc68b9 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -27,7 +27,10 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: make install + run: | + python -m pip install --upgrade pip + pip install setuptools wheel + make install - name: Test software run: make test - name: Report coverage @@ -45,7 +48,7 @@ jobs: - name: Install Python uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.11 - name: Install dependencies run: | python -m pip install --upgrade pip