Skip to content

chore: bump typer from 0.13.1 to 0.15.1 #640

chore: bump typer from 0.13.1 to 0.15.1

chore: bump typer from 0.13.1 to 0.15.1 #640

Workflow file for this run

name: Build and Test
on:
pull_request:
branches: ["main"]
workflow_call:
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-python-and-poetry
- uses: ./.github/actions/install-canvas
# Run Pytest unit tests via Poetry.
- name: Run Pytest unit tests
env:
INTEGRATION_TEST_URL: "https://plugin-testing.canvasmedical.com"
INTEGRATION_TEST_CLIENT_ID: ${{ secrets.INTEGRATION_TEST_CLIENT_ID }}
INTEGRATION_TEST_CLIENT_SECRET: ${{ secrets.INTEGRATION_TEST_CLIENT_SECRET }}
run: poetry run pytest -m "not integtest" --ff --verbosity 2
# Run Pytest integration tests via Poetry.
- name: Run Pytest integration tests
env:
INTEGRATION_TEST_URL: "https://plugin-testing.canvasmedical.com"
INTEGRATION_TEST_CLIENT_ID: ${{ secrets.INTEGRATION_TEST_CLIENT_ID }}
INTEGRATION_TEST_CLIENT_SECRET: ${{ secrets.INTEGRATION_TEST_CLIENT_SECRET }}
run: poetry run pytest -m "integtest" --ff --verbosity 2