Skip to content

Commit

Permalink
Add alembic to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaclarke committed May 18, 2021
1 parent 048ad82 commit 782cef6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ jobs:
pip install -r requirements-cli.txt
pip install -r requirements-build.txt
pip install coveralls
- name: Migrations
run: |
alembic upgrade head
env:
APPLICATION_NAME: "Conbench"
CREATE_ALL_TABLES: "false"
DB_USERNAME: "postgres"
DB_HOST: "localhost"
DB_PASSWORD: "postgres"
DB_NAME: "conbench_test"
DB_PORT: "5432"
- name: Lint (flake8)
run: |
flake8
Expand Down

0 comments on commit 782cef6

Please sign in to comment.