Skip to content

Commit 4e3e5bb

Browse files
authored
Publicatie van versie 2.1.0
2 parents e6796f6 + f9b2af6 commit 4e3e5bb

File tree

90 files changed

+7086
-605
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+7086
-605
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text eol=lf

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 58 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,58 @@
1-
name: Build and Check
2-
on:
3-
workflow_dispatch:
4-
pull_request:
5-
push:
6-
branches:
7-
- main
8-
jobs:
9-
build:
10-
name: Build
11-
uses: Logius-standaarden/Automatisering/.github/workflows/build.yml@main
12-
check:
13-
needs: build
14-
name: Check
15-
uses: Logius-standaarden/Automatisering/.github/workflows/check.yml@main
16-
publish:
17-
needs: build
18-
name: Publish (Logius)
19-
uses: Logius-standaarden/Automatisering/.github/workflows/publish.yml@main
20-
secrets: inherit
1+
name: Build and Check
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
- develop
9+
jobs:
10+
build:
11+
name: Build
12+
uses: Logius-standaarden/Automatisering/.github/workflows/build.yml@main
13+
check:
14+
needs: build
15+
name: Check
16+
uses: Logius-standaarden/Automatisering/.github/workflows/check.yml@main
17+
publish:
18+
needs: build
19+
name: Publish (Logius)
20+
uses: Logius-standaarden/Automatisering/.github/workflows/publish.yml@main
21+
secrets: inherit
22+
spectral_linter:
23+
needs: build
24+
name: Spectral linter test cases
25+
runs-on: ubuntu-22.04
26+
steps:
27+
- uses: actions/checkout@v4
28+
- uses: actions/setup-node@v4
29+
with:
30+
node-version: 20
31+
- name: Run test suite
32+
run: |
33+
npm install -g @stoplight/spectral-cli
34+
node linter/run-linter-tests.mjs
35+
examples_linter:
36+
needs: spectral_linter
37+
name: Examples linter tests
38+
runs-on: ubuntu-22.04
39+
strategy:
40+
matrix:
41+
example: [ aspnet, express, quarkus ]
42+
steps:
43+
- uses: actions/checkout@v4
44+
- uses: actions/setup-node@v4
45+
with:
46+
node-version: 20
47+
- uses: actions/setup-java@v4
48+
with:
49+
distribution: 'zulu'
50+
java-version: 21
51+
- name: Setup .NET 9.x
52+
uses: actions/setup-dotnet@v4
53+
with:
54+
dotnet-version: '9.x'
55+
- name: Install Spectral
56+
run: npm install -g @stoplight/spectral-cli
57+
- name: Run linter on ${{ matrix.example }} example
58+
run: ./examples/${{ matrix.example }}/build-and-check-project.sh

.github/workflows/link-checker.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Check published links
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
# Run on Mondays at 5:45 UTC
6+
- cron: '45 5 * * 1'
7+
8+
jobs:
9+
build:
10+
name: Build
11+
uses: Logius-standaarden/Automatisering/.github/workflows/link-checker.yml@main
12+
secrets: inherit

Abstract.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

Archief/ADR beheermodel v1.0.md

Lines changed: 0 additions & 331 deletions
This file was deleted.

Glossary.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

Governance/readme.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)