mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
27 lines
619 B
YAML
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
|
|
|