Skip to content

feat: add asgiref as optional dependency #25

feat: add asgiref as optional dependency

feat: add asgiref as optional dependency #25

Workflow file for this run

name: Test Suite
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
tests:
name: "Python ${{ matrix.python-version }} ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- uses: pdm-project/setup-pdm@v4
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies
run: pdm add -d nox
- name: Run tests
run: pdm run nox -s test_for_ci