Skip to content

Commit

Permalink
just use pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
mmkal committed Sep 20, 2024
1 parent dcac700 commit ba5de3b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,15 @@ jobs:
run: |
echo 'select 123 as test_column \gdesc' | docker exec -i postgres_github_actions psql "postgresql://postgres:postgres@localhost:5432/postgres" -f - | grep 'test_column | integer'
- uses: actions/checkout@v2
- name: install migra
uses: threeal/[email protected]
- name: Set up Python
uses: actions/setup-python@v2
with:
packages: migra
python-version: '3.x'
- name: Install migra
run: |
python -m pip install --upgrade pip
pip install migra
- run: migra --help | grep 'Generate a database migration'
- uses: actions/setup-node@v2
with:
Expand Down

0 comments on commit ba5de3b

Please sign in to comment.