Release5 UI Changes #203
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: .NET Build and Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
continue-on-error: true | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Check out the code from the repository | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Set up .NET with version 6.0.x | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
# Restore the dependencies of the .NET project | |
- name: Restore dependencies | |
run: dotnet restore ./backend | |
# Build the project | |
- name: Build | |
run: dotnet build ./backend --no-restore | |
# Run tests | |
- name: Test | |
run: dotnet test ./backend --no-build --verbosity normal |