fix: set_response_header breaking openapi doc rendering #3140
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
# CI to test Robyn on major Linux, MacOS and Windows | |
on: [push, pull_request] | |
name: Python Continuous integration | |
jobs: | |
tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["windows", "ubuntu", "macos"] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
name: ${{ matrix.os }} tests with python ${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Nox | |
uses: wntrblm/[email protected] | |
with: | |
python-versions: ${{ matrix.python-version }} | |
- name: Test with Nox | |
run: nox --non-interactive --error-on-missing-interpreter -p ${{ matrix.python-version }} |