diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6e422bf9d4..d223ee5f16 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8'] #, '3.9', '3.10', '3.11'] max-parallel: 5 env: python_version: ${{ matrix.python-version }} @@ -47,13 +47,13 @@ jobs: - name: Install Requirements run: | - echo $GITHUB_TOKEN python3 -m pip install --upgrade pip setuptools make install python3 -m pip list - name: Check Code Style run: | + echo "Token is |$GITHUB_TOKEN|" make style - name: Run Tests