Skip to content

Support client_credentials grant type #14

Support client_credentials grant type

Support client_credentials grant type #14

Workflow file for this run

name: testing
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: |
pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install package
run: |
poetry install
- name: Run tests
run: |
poetry run -- make test