fix: enable follow_redirects for httpx client to handle 307 status codes #523
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: Pull Request | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| jobs: | |
| test: | |
| if: github.event.pull_request.draft == false | |
| runs-on: ubuntu-latest | |
| name: Unit Tests | |
| steps: | |
| - name: Cloning repo | |
| uses: actions/checkout@v4 | |
| - name: Set up Rye | |
| uses: eifinger/setup-rye@v2 | |
| with: | |
| enable-cache: true | |
| - name: Install Dependencies | |
| run: rye sync --no-lock | |
| - name: Run Tests | |
| run: rye test |