daphne/.github/workflows/tests.yml

40 lines
837 B
YAML
Raw Normal View History

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu
- windows
python-version:
2021-11-09 17:58:09 +03:00
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
2021-04-16 19:21:51 +03:00
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
2021-04-16 19:21:51 +03:00
- name: Install dependencies
run: |
2021-04-16 19:21:51 +03:00
python -m pip install --upgrade pip setuptools wheel
2022-12-08 04:06:41 +03:00
python -m pip install --upgrade tox
2021-04-16 19:21:51 +03:00
- name: Run tox targets for ${{ matrix.python-version }}
2022-12-08 04:06:41 +03:00
run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)