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

27 lines
619 B
YAML

name: django-mailbox
on:
push:
branches:
- fix-ci
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