add result page #106
Workflow file for this run
This file contains 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: Server Build Check | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v3 | |
with: | |
# global-json-file: server/src/global.json | |
dotnet-version: 8 | |
dotnet-quality: "preview" | |
- name: Restore Dependencies | |
run: dotnet restore server/src/Api | |
- name: Build Project | |
run: dotnet build server/src/Api --configuration Release | |
- name: Run Tests | |
run: dotnet test server |