Skip to content

Commit

Permalink
Ensure extensions are compiled in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Jul 18, 2023
1 parent 74f1ac0 commit 929c2bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@ jobs:
run: poetry config virtualenvs.create false

- name: Install dependencies
run: poetry install --only main --only test --only benchmark -vvv
run: poetry install --only main --only test --only benchmark -vvv --no-root

- name: Install pendulum and check extensions
run: |
poetry install --only-root
python -c 'import _pendulum; import pendulum.extensions._helpers'
- name: Run benchmarks
uses: CodSpeedHQ/action@v1
Expand Down

0 comments on commit 929c2bb

Please sign in to comment.