bug: Fix #21 icon selector is broken in production #26
This file contains 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
name: tests | |
on: [pull_request, push] | |
env: | |
DATABASE_URL: sqlite:///cardie/db.sqlite3 | |
jobs: | |
test_project: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- run: pip install -r requirements.txt | |
- run: pip install -r requirements-dev.txt | |
- run: python cardie/manage.py test cardie |