Add blocklist and allowlist for oidc domains #83
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: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
PY_COLORS: 1 | |
jobs: | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- uses: psf/black@stable | |
with: | |
options: "--check ." | |
commitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: wagoid/commitlint-github-action@v3 | |
test: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:14.11 | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
memcached: | |
image: memcached:1.6.23-alpine | |
ports: | |
- 11211:11211 | |
redis: | |
image: redis:6.2.14-alpine | |
ports: | |
- 6379:6379 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- uses: abatilo/actions-poetry@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Setup required upstream yarn version | |
run: yarn set version 1.22.21 | |
- run: | | |
sudo apt-get update && sudo apt-get install -y libxmlsec1-dev libmaxminddb-dev | |
poetry install --with test | |
make deps | |
poetry run pytest |