mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
trying to get ci set up
This commit is contained in:
parent
a5bfd3dce8
commit
e5daf10e9d
3 changed files with 43 additions and 11 deletions
27
.github/workflows/ci.yaml
vendored
Normal file
27
.github/workflows/ci.yaml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue