Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
python-version: ["3.10", "3.12", "3.14"]

steps:
- uses: actions/checkout@v5
Expand All @@ -20,6 +20,7 @@ jobs:
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip

- name: Install dependencies
run: |
Expand All @@ -30,9 +31,18 @@ jobs:
- name: Run tests
run: pytest -ra --cov=tika

- name: Upload coverage to Coveralls
if: success()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
coveralls
- name: Coveralls parallel
uses: coverallsapp/github-action@v2
with:
flag-name: coverage-python-${{ matrix.python-version }}
parallel: true

finish-coverage:
needs: test
if: ${{ always() }}
runs-on: ubuntu-slim
steps:
- name: Coveralls finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
setuptools
requests
pyyaml==5.4.1
coveralls
pytest-cov
memory_profiler
Expand Down
Loading