Skip to content

Commit

Permalink
Switch to GitHub Actions CI
Browse files Browse the repository at this point in the history
Fixes hzdg#130
  • Loading branch information
akx committed May 9, 2022
1 parent bda0a46 commit 18df4fa
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 41 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
Build:
runs-on: ubuntu-20.04
strategy:
matrix:
include:
- python-version: '3.6'
- python-version: '3.8'
steps:
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v2
with:
python-version: '${{ matrix.python-version }}'
- uses: actions/checkout@v2
- run: pip install -U pip wheel setuptools tox-gh-actions
- run: tox
36 changes: 0 additions & 36 deletions .travis.yml

This file was deleted.

12 changes: 7 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[tox]
envlist =
py{36,37,38,39}-django{22,30,31}
py{36,37,38}-django{22,30,31}
py{38,39,310}-django{40}

[testenv]
setenv = PYTHONPATH = {toxinidir}
commands = py.test -s tests --cov=enumfields --cov-report=term-missing
deps =
djangorestframework>=3.7
pytest-django
pytest-coverage
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
pytest-cov
django22: Django~=2.2.0
django30: Django~=3.0.0
django31: Django~=3.1.0
django40: Django~=4.0.0

0 comments on commit 18df4fa

Please sign in to comment.