Fixing issue with DDI references on ADAPT Representations #17
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET '5.0' | |
uses: actions/[email protected] | |
with: | |
dotnet-version: '5.0.x' | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Application Data Model Test | |
run: dotnet test ./source/ApplicationDataModelTest/ApplicationDataModelTest.csproj -c Release | |
- name: Plugin Manager Test | |
run: dotnet test ./source/PluginManagerTest/PluginManagerTest.csproj -c Release | |
- name: Representation Test | |
run: dotnet test ./source/RepresentationTest/RepresentationTest.csproj -c Release |