Allow end users to install proxygen-cli alongside pydantic v2 #152
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: ci-checks | |
| on: | |
| pull_request: | |
| branches: | |
| - "*" | |
| env: | |
| PROXYGEN_CLIENT_ID: ${{ secrets.PROXYGEN_CLIENT_ID }} | |
| PROXYGEN_CLIENT_SECRET: ${{ secrets.PROXYGEN_CLIENT_SECRET }} | |
| jobs: | |
| build: | |
| name: ci-checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Install Python 3.13 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.13" | |
| - name: install poetry | |
| if: always() | |
| run: pip install --upgrade pip && pip install poetry | |
| - name: Install dependencies | |
| if: always() | |
| run: python -m poetry install | |
| - name: Pytest | |
| if: always() | |
| run: make pytest-ci |