Add WhereAlso to QueryBuilder #3
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: "Pull Request Build" | |
env: | |
SOLUTION: 'src/CSESoftware.Repository.sln' | |
on: | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Nuget Restore for App | |
run: dotnet restore "${{ env.SOLUTION }}" | |
- name: Build Solution | |
run: dotnet publish "${{ env.SOLUTION }}" --configuration Release | |
env: | |
CI: false | |
- name: Run Unit Tests on Solution | |
run: dotnet test "${{ env.SOLUTION }}" --no-build --configuration Release --verbosity normal |