asyncio_default_fixture_loop_scope = "function", closes #37 #59
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, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: Install dependencies | |
run: | | |
pip install '.[test]' | |
- name: Run tests | |
run: | | |
pytest --cov-fail-under=99 --cov asgi_csrf | |
- name: Upload coverage to codecov.io | |
run: bash <(curl -s https://codecov.io/bash) | |
if: always() | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Build package to upload as artifact | |
run: | | |
pip install setuptools wheel build | |
python -m build | |
- name: Store the distribution packages | |
if: matrix.python-version == '3.12' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: python-packages | |
path: dist/ |