Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
wuan committed Jun 20, 2024
1 parent e9c8142 commit ab96a34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
- name: Setup environment
run: poetry install
- name: Show environment
run: pip list
run: poetry run pip list
- name: Tests
run: |
pytest --cov=scan_pdf --cov-report xml:reports/coverage.xml --cov-report term --junitxml=reports/junit.xml
poetry run pytest --cov=scan_pdf --cov-report xml:reports/coverage.xml --cov-report term --junitxml=reports/junit.xml
head -30 reports/coverage.xml
- name: Build
run: python setup.py sdist
run: poetry build

- uses: sonarsource/sonarqube-scan-action@master
if: matrix.python-version == '3.8'
Expand Down

0 comments on commit ab96a34

Please sign in to comment.