Skip to content

Feature/migrate to poetry (#71) #91

Feature/migrate to poetry (#71)

Feature/migrate to poetry (#71) #91

Workflow file for this run

name: Build
on: [push]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.12
- name: Install dependencies
run: make setup
- name: Lint
run: make lint
- name: Test
run: make test
env:
TEST_DISCO_ADDRESS: ${{ secrets.TEST_DISCO_ADDRESS }}
TEST_JWKS_ADDRESS: ${{ secrets.TEST_JWKS_ADDRESS }}
TEST_CLIENT_ID: ${{ secrets.TEST_CLIENT_ID }}
TEST_CLIENT_SECRET: ${{ secrets.TEST_CLIENT_SECRET }}
TEST_SCOPE: ${{ secrets.TEST_SCOPE }}
TEST_EXPIRED_TOKEN: ${{ secrets.TEST_EXPIRED_TOKEN }}
TEST_AUDIENCE: ${{ secrets.TEST_AUDIENCE }}
- name: Build
run: make build-dist