Skip to content

Commit 67e44f5

Browse files
authored
Create build-test-ef6.yml
1 parent 762f0d9 commit 67e44f5

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build and Test Ardalis.Specification.EntityFramework6
2+
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'docs/**'
7+
8+
jobs:
9+
build:
10+
runs-on: windows-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Setup .NET
15+
uses: actions/setup-dotnet@v1
16+
with:
17+
dotnet-version: 5.0.400
18+
- name: Setup MSBuild.exe
19+
uses: microsoft/[email protected]
20+
- name: Build with dotnet
21+
run: dotnet build ArdalisSpecificationEF/tests/Ardalis.Specification.EntityFramework6.IntegrationTests/Ardalis.Specification.EntityFramework6.IntegrationTests.csproj --configuration Release
22+
- name: Test with dotnet
23+
run: dotnet test ArdalisSpecificationEF/tests/Ardalis.Specification.EntityFramework6.IntegrationTests/Ardalis.Specification.EntityFramework6.IntegrationTests.csproj --configuration Release

0 commit comments

Comments
 (0)