Skip to content

Commit

Permalink
Check format
Browse files Browse the repository at this point in the history
  • Loading branch information
phavekes committed Sep 17, 2024
1 parent 121ea2a commit 1c9ba27
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 5 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Test Documentation

# Triggers the workflow on push or pull request events
on:
workflow_dispatch:
push:
branches: [main]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
documentation:
runs-on: ubuntu-latest
name: Test documentation
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: lint markdown files
uses: nosborn/[email protected]
with:
files: .

- name: lint yaml files
uses: ibiqlik/action-yamllint@v2
3 changes: 2 additions & 1 deletion .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
MD013: false
---
MD013: false
4 changes: 4 additions & 0 deletions .yamllint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---

rules:
key-ordering: disable
8 changes: 4 additions & 4 deletions application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ logging:
generiek: DEBUG

server:
port: 8092 # change if docker setup is changed
port: 8092 # change if docker setup is changed
error:
path: "/error"
include-message: always
Expand Down Expand Up @@ -87,8 +87,8 @@ backend:
api_password: secret

oidc:
#Special authentication needs (like MFA) can be spefified here
#acr-context-class-ref: https://refeds.org/profile/mfa
# Special authentication needs (like MFA) can be spefified here
# acr-context-class-ref: https://refeds.org/profile/mfa
#
# oidc-client id and secret received when connected to MyacademicID
client-id: APP-000000000-00000-0000-0000-0000000000
Expand All @@ -99,7 +99,7 @@ oidc:
#
# Don't edit these
authorization-uri: https://proxy.prod.erasmus.eduteams.org/OIDC/authorization
token-uri: https://proxy.prod.erasmus.eduteams.org/OIDC/token
token-uri: https://proxy.prod.erasmus.eduteams.org/OIDC/token
jwk-set-uri: https://proxy.prod.erasmus.eduteams.org/OIDC/jwks
jwk:
# The HTTP connect timeout for JWK set retrieval, in millisecond
Expand Down

0 comments on commit 1c9ba27

Please sign in to comment.