Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpinjackie committed Oct 12, 2021
2 parents 873a7ad + 7cce6d1 commit 8063674
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: .NET

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Restore dependencies
run: dotnet restore Core.sln
- name: Build
run: dotnet build --no-restore Core.sln
- name: Test ObjectModels
run: dotnet test --no-build --verbosity normal OSGeo.MapGuide.ObjectModels.Tests
- name: Test MaestroAPI
run: dotnet test --no-build --verbosity normal OSGeo.MapGuide.MaestroAPI.Tests

0 comments on commit 8063674

Please sign in to comment.