Concurrent Test Grain Factory #122
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-and-test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Build | |
run: | | |
dotnet restore --verbosity minimal | |
dotnet build --configuration Release --no-restore --verbosity minimal | |
dotnet pack --configuration Release --no-restore --verbosity minimal | |
- name: Test | |
run: | | |
dotnet test --configuration Release --no-build --no-restore --verbosity minimal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Include="[OrleansTestKit]*" | |
- name: Upload NuGet Packages | |
uses: actions/upload-artifact@v1 | |
with: | |
name: Packages | |
path: artifacts/Release/ |