Add ability to specify task domain per task or all tasks in project #510
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: .NET | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6.x | |
8.x | |
- name: Restore dependencies | |
run: dotnet restore ConductorSharp.sln | |
- name: Build | |
run: dotnet build --no-restore ConductorSharp.sln | |
- name: Test | |
run: dotnet test --no-restore --verbosity normal ConductorSharp.sln |