Skip to content

Commit

Permalink
Attempt to fix test_release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Feb 23, 2023
1 parent cc300fa commit 4bdb6db
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,18 @@ jobs:
with:
python-version: ${{ matrix.py }}

- name: Update dependencies
run: python3 -m pip install -U pip setuptools
- name: Check out pypdfium2 repository
uses: actions/checkout@v3
with:
repository: ${{ github.repository }}

- name: Install/update deps
run: |
python3 -m pip install -U pip setuptools
python3 -m pip install -U -r req/converters.txt -r req/test.txt
- name: Install pypdfium2
run: python3 -m pip install -U --pre pypdfium2[test,converters] --index-url ${{ inputs.index_url }}
run: python3 -m pip install -U --pre pypdfium2 --index-url ${{ inputs.index_url }}

- name: Get pypdfium2 version
id: version
Expand Down

0 comments on commit 4bdb6db

Please sign in to comment.