File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ jobs :
10+ test :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ python-version : ["3.7"]
15+
16+ steps :
17+ - uses : actions/checkout@v5
18+
19+ - name : Set up Python ${{ matrix.python-version }}
20+ uses : actions/setup-python@v6
21+ with :
22+ python-version : ${{ matrix.python-version }}
23+
24+ - name : Install dependencies
25+ run : |
26+ python -m pip install --upgrade pip
27+ python -m pip install -r requirements.txt
28+ python -m pip install -e .[all]
29+
30+ - name : Run tests
31+ run : pytest -ra --cov=tika
32+
33+ - name : Upload coverage to Coveralls
34+ if : success()
35+ env :
36+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
37+ run : |
38+ coveralls
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ pyyaml==5.4.1
44python-coveralls
55pytest-cov < 2.6
66memory_profiler
7- beautifulsoup4 == 4.13.3
7+ beautifulsoup4 == 4.13.3
You can’t perform that action at this time.
0 commit comments