test: add regression test for handle_forwarded_beacon HTTPBadRequest #127
This file contains hidden or 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: Code Testing | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - python-version: 3.10.9 | |
| toxenv: py310,style,coverage-ci | |
| - python-version: 3.11 | |
| toxenv: py311,style,coverage-ci | |
| - python-version: 3.12 | |
| toxenv: py312,style,coverage-ci | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - name: Setup python | |
| uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| pip install --upgrade virtualenv | |
| pip install tox | |
| - name: Run tests | |
| env: | |
| TOXENV: ${{ matrix.toxenv }} | |
| run: tox |