Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
port: 5432
nextcloud:
- "31"
- "32"
services:
db:
image: ${{ matrix.db.image }}
Expand Down Expand Up @@ -114,7 +115,8 @@ jobs:
run: php occ fulltextsearch:document:index admin files "$TEST_DOC"

- name: Search for test PDF document
run: php occ fulltextsearch:search admin Nextcloud | grep -- "^ - $TEST_DOC score:"
run: >
php occ fulltextsearch:search admin Nextcloud | grep -e "^ - $TEST_DOC score:" -e "^ *\* id: $TEST_DOC"

- name: Create test ISO-8859-1 document
run: echo -e "F\xFCr Testzwecke" | php occ files:put - /admin/files/iso-8859-1.txt
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Currently can not index office document formats, but does work with PDFs (if the
<bugs>https://github.com/jplitza/fulltextsearch_sql/issues</bugs>
<repository>https://github.com/jplitza/fulltextsearch_sql.git</repository>
<dependencies>
<nextcloud min-version="31" max-version="31"/>
<nextcloud min-version="31" max-version="32"/>
<database>mysql</database>
<database>pgsql</database>
</dependencies>
Expand Down
Loading