1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00
django-mailbox/.github/workflows/ci.yaml
2022-08-16 20:10:53 -05:00

25 lines
590 B
YAML

name: django-mailbox
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: upgrade pip
run: python -m pip install --upgrade pip
- name: install tox
run: python -m pip install tox tox-gh-actions
- name: run tox using the version of Python in PATH
run: tox