This repository was archived by the owner on May 4, 2026. It is now read-only.
Add isworking endpoint to master server for status monitoring #824
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: .NET | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main, OculusDB-current ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v2 | |
| with: | |
| dotnet-version: 6.0.x | |
| - run: cd OculusDB | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build | |
| - name: Upload Debug net6.0.zip | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: net6.0-Debug | |
| path: OculusDB/bin/Debug/net6.0 | |
| - name: Upload Release net6.0.zip | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: net6.0-Release | |
| path: OculusDB/bin/Release/net6.0 |