Remove pipenv install from Makefile #718
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Conformance | |
| on: | |
| pull_request: | |
| push: | |
| tags: | |
| - 'v*.*.*' | |
| branches: | |
| - 'main' | |
| permissions: | |
| contents: read | |
| jobs: | |
| conformance: | |
| name: Conformance Testing | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Note we can't test above v3.12 because google-re2 does not have a | |
| # built wheel beyond 3.12 on PyPI | |
| python-version: ["3.9", "3.10", "3.11", "3.12"] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: stable | |
| - name: Install Python ${{ matrix.python-version }} | |
| id: python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "pipenv" | |
| - run: ${{steps.python.outputs.python-path}} -m pip install --upgrade pip pipenv | |
| - name: Test conformance | |
| run: make conformance PYTHON=${{ steps.python.outputs.python-path }} |