Build and Test #60
Workflow file for this run
This file contains 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: Build and Test | |
on: | |
merge_group: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
authorize: | |
name: Authorize | |
environment: ${{ github.actor != 'dependabot[bot]' && github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }} | |
runs-on: ubuntu-latest | |
steps: | |
- run: true | |
run: | |
needs: authorize # Require approval before running on forked pull requests | |
name: Run | |
runs-on: ubuntu-latest | |
env: | |
BUBBLEWRAP_ARGUMENTS: | | |
--unshare-all \ | |
--clearenv \ | |
--ro-bind / / \ | |
--bind ${{ github.workspace }} ${{ github.workspace }} \ | |
--tmpfs $HOME \ | |
--tmpfs /tmp \ | |
--tmpfs /var \ | |
--dev /dev \ | |
--proc /proc \ | |
--die-with-parent \ | |
--new-session \ | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
- name: Configure Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: Configure dependencies | |
run: | | |
sudo apt install bubblewrap | |
pip install --user --upgrade pip | |
pip install --user pipx | |
pipx ensurepath | |
pipx install poetry==1.4.2 | |
poetry config virtualenvs.in-project true | |
poetry install --with dev | |
poetry self add "poetry-dynamic-versioning[plugin]" | |
- name: Run tests | |
run: | | |
poetry run pytest --cov=auth0 --cov-report=term-missing:skip-covered --cov-report=xml | |
# bwrap ${{ env.BUBBLEWRAP_ARGUMENTS }} bash | |
# - name: Run lint | |
# run: | | |
# pipx install black==23.3.0 | |
# pipx install flake8==5.0.4 | |
# pipx install isort==5.11.5 | |
# pipx install pyupgrade==3.3.2 | |
# black . --check | |
# flake8 . --count --show-source --statistics | |
# isort . --diff --profile black | |
# pyupgrade . --py37-plus --keep-runtime-typing | |
- if: ${{ matrix.python-version == '3.10' }} | |
name: Upload coverage | |
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # pin@3.1.4 |