Skip to content

Add update and create for external sso connections #373

Add update and create for external sso connections

Add update and create for external sso connections #373

Workflow file for this run

name: Pull Request checks
on:
pull_request:
branches: [main]
jobs:
test-stytch:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
name: "Run tests for python ${{ matrix.python-version }}"
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Check types and run linter
run: make lint
- name: Run unit tests
run: make test