Skip to content

Commit

Permalink
Merge branch 'dev' into fix-responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
atulyamiglani authored Apr 7, 2021
2 parents 401e158 + d21d798 commit 7ce87ea
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 14 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Django CI

on: [push, pull_request]
jobs:
Test:
name: Django
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Poetry
uses: snok/[email protected]
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: |
poetry install --no-root
- name: Run Tests
run: |
poetry run python manage.py test
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

0 comments on commit 7ce87ea

Please sign in to comment.