summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-08-29 23:39:35 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-27 15:35:31 +0200
commitd00d1ab2a28f428223e52b17052c072c64784016 (patch)
treec019f85fb7ac67147dd43ca64b4ac3cda99832f7 /.github
parent5687baca75d47dbdffd3de74e865ad2f71ef0cb7 (diff)
Create V2 mapper, Service and management commands
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/integration-tests.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml
index 14244ab2a..b94f01f8e 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -100,9 +100,16 @@ jobs:
run: |
cd ../server
./occ news:generate-explore --votes 100 "https://nextcloud.com/blog/feed/"
+ ./occ news:folder:add 'admin' 'Something'
+ ./occ news:folder:list 'admin' | grep 'Something'
+ ./occ news:folder:delete 'admin' $(./occ news:folder:list 'admin' | grep 'Something' -1 | head -1 | grep -oE '[0-9]*')
+ ./occ news:feed:add 'admin' "https://nextcloud.com/blog/feed/"
+ ./occ news:feed:list 'admin' | grep 'nextcloud\.com'
+ ./occ news:feed:delete 'admin' $(./occ news:feed:list 'admin' | grep 'nextcloud\.com' -1 | head -1 | grep -oE '[0-9]*')
- name: Prep PHP tests
run: cd ../server/apps/news && make php-test-dependencies
- name: Integration tests
run: cd ../server/apps/news && make integration-test
+