-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 1.07 KB
/
Copy pathci.yml
File metadata and controls
41 lines (38 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
dotnet:
runs-on: windows-2025
steps:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- run: dotnet restore Reva.slnx
- run: dotnet format Reva.slnx --verify-no-changes
- run: dotnet build Reva.slnx --no-restore
- run: dotnet test Reva.slnx --no-build
- uses: actions/setup-python@v6
with:
python-version: "3.13"
- run: python -m unittest discover tools/docling-worker/tests
- uses: actions/setup-node@v4
with:
node-version: "24"
- run: npm install -g pnpm@10.33.2
- shell: pwsh
run: ./tests/package-smoke.ps1
e2e:
runs-on: windows-2025
steps:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- run: dotnet build Reva.slnx
- run: dotnet build tests/Reva.E2E/Reva.E2E.csproj
- run: dotnet test tests/Reva.E2E/Reva.E2E.csproj --no-build