Skip to content

Commit 5422e9b

Browse files
committed
Fix yamllint violations (mostly whitespace).
1 parent 9142dc0 commit 5422e9b

4 files changed

Lines changed: 51 additions & 35 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
1+
# This workflow will do a clean install of node dependencies, build the source
2+
# code and run tests across different versions of node
3+
# For more information see:
4+
# https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
35

46
name: CI
57

@@ -16,12 +18,12 @@ jobs:
1618

1719
strategy:
1820
matrix:
19-
os: [ubuntu-latest]
21+
os: [ ubuntu-latest ]
2022

2123
steps:
22-
- uses: actions/checkout@v2
23-
# Run the Solid test-suite
24-
- name: Run the Solid test suite
25-
shell: 'script -q -e -c "bash {0}"'
26-
run: |
27-
bash ./run-solid-test-suite.sh
24+
- uses: actions/checkout@v2
25+
# Run the Solid test-suite
26+
- name: Run the Solid test suite
27+
shell: 'script -q -e -c "bash {0}"'
28+
run: |
29+
bash ./run-solid-test-suite.sh

_config.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
baseurl: /solid-nextcloud
3-
description: A plugin to make Nextcloud compatible with Solid
3+
description: A plugin to make Nextcloud compatible with Solid
44
repository: pdsinterop/solid-nextcloud
55
title: Solid Nextcloud
66
url: https://pdsinterop.org/
@@ -33,7 +33,7 @@ nav:
3333
exclude:
3434
- /
3535
- /404.html
36-
favicon_ico : /favicon.ico
36+
favicon_ico: /favicon.ico
3737
main_title:
3838
link: '/'
3939
recurse: true
@@ -42,7 +42,14 @@ nav:
4242
aux_links:
4343
"PDS Interop on GitHub":
4444
- https://github.com/pdsinterop
45-
footer_content: '<p xmlns:dct="http://purl.org/dc/terms/" property="dct:rights">Copyright © <span property="dct:dateCopyrighted">2020-2021</span> <span property="dct:publisher">PDS Interop</span>. Distributed under a <a rel="license" href="https://pdsinterop.org/license/">MIT license</a>.</p>'
45+
footer_content: |
46+
<p xmlns:dct="http://purl.org/dc/terms/" property="dct:rights">
47+
Copyright ©
48+
<span property="dct:dateCopyrighted">2020-2021</span>
49+
<span property="dct:publisher">PDS Interop</span>.
50+
Distributed under a
51+
<a rel="license" href="https://pdsinterop.org/license/">MIT license</a>.
52+
</p>
4653
gh_edit_link: true
4754
gh_edit_repository: https://github.com/pdsinterop/solid-nextcloud
4855
logo: https://avatars3.githubusercontent.com/u/65920341

docker-compose.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: '3'
2-
3-
services:
4-
pubsub:
5-
build:
6-
context: https://github.com/pdsinterop/php-solid-pubsub-server.git#main
7-
ports:
8-
- 8080:8080
9-
expose:
10-
- 8080
11-
depends_on:
12-
- nextcloud
13-
nextcloud:
14-
build:
15-
context: ./
16-
dockerfile: Dockerfile
17-
expose:
18-
- 443
19-
ports:
20-
- 443:443
1+
version: '3'
2+
3+
services:
4+
pubsub:
5+
build:
6+
context: https://github.com/pdsinterop/php-solid-pubsub-server.git#main
7+
ports:
8+
- 8080:8080
9+
expose:
10+
- 8080
11+
depends_on:
12+
- nextcloud
13+
nextcloud:
14+
build:
15+
context: ./
16+
dockerfile: Dockerfile
17+
expose:
18+
- 443
19+
ports:
20+
- 443:443

solid/.travis.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,14 @@ before_script:
5050
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "grant all on oc_autotest.* to 'oc_autotest'@'localhost';"; fi
5151
- cd nextcloud
5252
- mkdir data
53-
- ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
53+
- |
54+
./occ maintenance:install \
55+
--admin-pass admin \
56+
--admin-user admin \
57+
--database $DB \
58+
--database-name oc_autotest \
59+
--database-pass='' \
60+
--database-user oc_autotest
5461
- ./occ app:enable solid
5562
- php -S localhost:8080 &
5663
- cd apps/solid
@@ -66,5 +73,5 @@ addons:
6673
mariadb: '10.1'
6774

6875
services:
69-
- postgresql
70-
- mariadb
76+
- postgresql
77+
- mariadb

0 commit comments

Comments
 (0)