Merge pull request #58 from glhays/users/glhays/documentations-readme… #127
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: OData Neo Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- name: Checking out code | |
uses: actions/checkout@v2 | |
- name: Setting up DotNet version | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.100-preview.1.22110.4 | |
include-prerelease: true | |
- name: Restoring Nuget Packages | |
run: dotnet restore | |
- name: Building Solution | |
run: dotnet build --no-restore | |
- name: Testing | |
run: dotnet test --no-build --verbosity normal |