Skip to content

Commit

Permalink
Merge pull request #117 from dhellmann/django-integration-github-action
Browse files Browse the repository at this point in the history
add integration test to github actions
  • Loading branch information
dhellmann authored Nov 5, 2020
2 parents 111866f + 09e409f commit aa5971d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Integration Tests

on:
- push
- pull_request

jobs:
django:
runs-on: ubuntu-latest

strategy:
fail-fast: false

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: python3 -m pip install tox

- name: Build docs
run: python3 ./integration_tests/build_django.py

0 comments on commit aa5971d

Please sign in to comment.