dashboard statusbar fix #67
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: | |
| push: | |
| branches: [ 'master', 'development' ] | |
| defaults: | |
| run: | |
| working-directory: Ixian-Core | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Ixian-Core | |
| uses: actions/checkout@v4 | |
| with: | |
| path: Ixian-Core | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Building Ixian-Core | |
| run: dotnet build | |
| - name: Running Unit Tests | |
| run: dotnet test IXICore.sln --verbosity normal |