Skip to content

fix: prevent header duplication & guard JSON parsing in auth proxy #58

fix: prevent header duplication & guard JSON parsing in auth proxy

fix: prevent header duplication & guard JSON parsing in auth proxy #58

Workflow file for this run

# Runs tests via tox
# Runs on pull requests to main
name: Test on pull request
on:
pull_request:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- name: Install build meta-dependencies
run: |
pip install tox poetry tox-gh-actions
- name: Test with tox
run: |
tox
# - name: Coveralls Python
# uses: AndreMiras/coveralls-python-action@v20201129
# with:
# #github-token: #${{ secrets.GITHUB_TOKEN }}
# github-token: ${{ secrets.COVERALLS_REPO_TOKEN }}
- uses: codecov/codecov-action@v1
with:
verbose: true # optional (default = false)