Created
November 5, 2019 11:13
-
-
Save sabderemane/b5494b3e0557d33614714e83487973bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python 3.5.7 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: 3.5.7 | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Run tests | |
run: python manage.py test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment