Skip to content

Commit

Permalink
running python from venv directly
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaTegner committed Dec 22, 2024
1 parent 0d251e0 commit 2cb06a0
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,11 @@ jobs:
- name: Install and configure UV
run: pip3 install --upgrade uv setuptools
- name: Install dependencies
run: |
uv sync --dev
source .venv/bin/activate
run: uv sync --dev
- name: Download pandoc
run: python setup_binary.py download_pandoc
run: ./.venv/scripts/python setup_binary.py download_pandoc
- name: run tests
run: python tests.py
run: ./.venv/scripts/python tests.py

builder_pypandoc:
needs: [test]
Expand Down

0 comments on commit 2cb06a0

Please sign in to comment.