feat: all-in-one secure Reva.exe (single self-contained .NET binary, no Node) #34
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |