- Notifications
You must be signed in to change notification settings - Fork71
Bump urllib3 from 2.3.0 to 2.5.0 in /docs#8
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
| # This workflow will use Nox to run tests and lint for the supported Python versions, and upload the test coverage data. | |
| name:Build & Test | |
| on: | |
| pull_request: | |
| branches: | |
| -main | |
| jobs: | |
| build: | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v4 | |
| -uses:fjwillemsen/setup-nox2@v3.0.0 | |
| -run:| | |
| nox -- ${{ runner.os }} | |
| -name:Report to Coveralls | |
| uses:coverallsapp/github-action@v2 | |
| with: | |
| file:coverage.xml | |
| format:cobertura | |
| fail-on-error:false |