Skip to content

132 - Add support for name and version fetch endpoint (#141) #404

132 - Add support for name and version fetch endpoint (#141)

132 - Add support for name and version fetch endpoint (#141) #404

Workflow file for this run

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@v2
with:
dotnet-version: 6.0.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