auth: Skip OIDC flow if Bearer access_token is present (bug 1979246) #156
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: mozilla-django-oidc codecov | |
| on: [pull_request] | |
| jobs: | |
| codecov: | |
| runs-on: ubuntu-latest | |
| name: Codecov | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Setup python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.12' | |
| - name: Install dependencies | |
| run: pip install codecov tox tox-gh-actions | |
| - name: Run tox | |
| run: tox | |
| - uses: codecov/codecov-action@v1 | |
| with: | |
| verbose: true |