chore(deps): bump certifi from 2025.10.5 to 2025.11.12 #2372
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| CI: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.9 | |
| - name: Set up Poetry 2.1.0 | |
| uses: abatilo/[email protected] | |
| with: | |
| poetry-version: 1.1.2 | |
| - name: Start MongoDB | |
| uses: supercharge/[email protected] | |
| with: | |
| mongodb-version: 4.4 | |
| - name: Run tests | |
| env: | |
| DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
| ACCESS_TOKEN_SECRET_KEY: ${{ secrets.ACCESS_TOKEN_SECRET_KEY }} | |
| REFRESH_TOKEN_SECRET_KEY: ${{ secrets.REFRESH_TOKEN_SECRET_KEY }} | |
| run: make tests | |
| - name: Upload coverage | |
| uses: codecov/codecov-action@v5 |