Skip to content

Commit

Permalink
Added gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Gagaro committed Apr 12, 2021
1 parent 670d58a commit de31526
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
45 changes: 45 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Python package

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]

env:
SPATIALITE_LIBRARY_PATH: 'mod_spatialite'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v2
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -y libproj-dev libgeos-dev gdal-bin libgdal-dev
python -m pip install --upgrade pip
pip install -U tox tox-gh-actions jsonfield coverage coveralls argparse flake8
- name: Flake8
run: flake8 --ignore=E501,W504 djgeojson
- name: Test with tox
run: tox
- name: Upload coverage
if: ${{ success() }}
run: coveralls
9 changes: 8 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,17 @@

[tox]
envlist =
py35-django{22}
py36-django{22,30,31}
py37-django{22,30,31}
py38-django{22,30,31}
py39-django{30,31}

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39

[testenv]
commands = python -W error::DeprecationWarning -W error::PendingDeprecationWarning -W ignore:::site -W ignore:::distutils quicktest.py djgeojson
Expand Down

0 comments on commit de31526

Please sign in to comment.