From 581b70c2b88805d00cbd81ef17fafbd0780103c0 Mon Sep 17 00:00:00 2001 From: maxkahan Date: Thu, 1 Feb 2024 01:53:22 +0000 Subject: [PATCH] remove install action --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff726447..e1ea33f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,19 +22,19 @@ jobs: fail-fast: false matrix: python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - pants_python_version: [3.11] + # pants_python_version: [3.11] os: ["ubuntu-latest"] steps: - name: Clone repo uses: actions/checkout@v3 - - name: setup python - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python_version }} + # - name: setup python + # uses: actions/setup-python@v4 + # with: + # python-version: ${{ matrix.python_version }} - name: Initialize Pants uses: pantsbuild/actions/init-pants@main with: - gha-cache-key: cache0-py${{ matrix.pants_python_version }} + gha-cache-key: cache0-py${{ matrix.python_version }} named-caches-hash: ${{ hashFiles('requirements.txt') }} - name: Check BUILD files run: |