forked from ADAPT/ADAPT
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 800 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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