Skip to content

Commit

Permalink
Merge branch 'main' into versions/2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimvh committed Oct 11, 2021
2 parents 7c7fee5 + d2f6141 commit 012d9e0
Show file tree
Hide file tree
Showing 6 changed files with 617 additions and 1,189 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ on:
jobs:
conformance:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
branch:
- 'main'
- 'versions/2.0.0'
timeout-minutes: 10
steps:
- name: Use Node.js 16.x
Expand All @@ -17,6 +23,8 @@ jobs:
node-version: 16.x
- name: Check out the project
uses: actions/checkout@v2
with:
ref: ${{ matrix.branch }}
- name: Install dependencies and run build scripts
run: npm ci
- name: Start the server in the background
Expand All @@ -35,5 +43,7 @@ jobs:
docker run -i --rm
-v "$(pwd)"/reports/css:/reports
--env-file=./test/deploy/conformance.env
--network="host" solidconformancetestbeta/conformance-test-harness
--output=/reports --target=css
--network="host"
solidconformancetestbeta/conformance-test-harness
--output=/reports
--target=https://github.com/solid/conformance-test-harness/css
9 changes: 0 additions & 9 deletions guides/example-requests.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
## Interacting with the server

### `POST`: Creating a new pod

Create a pod using an external WebID for authentication:
```shell
curl -X POST -H "Content-Type: application/json" \
-d '{"login": "timbl", "webId": "http://timbl.inrupt.net/profile/card#me"}' \
http://localhost:3000/pods
```

### `PUT`: Creating resources for a given URL

Create a plain text file:
Expand Down
Loading

0 comments on commit 012d9e0

Please sign in to comment.