From ba5de3b6a66e1e11efc1ba03f16b5b9381d678ca Mon Sep 17 00:00:00 2001 From: Misha Kaletsky Date: Fri, 20 Sep 2024 10:55:31 -0400 Subject: [PATCH] just use pip install --- .github/workflows/main.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2f326ded..75fb385b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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/pipx-install-action@2.0.0 + - 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: