-
Notifications
You must be signed in to change notification settings - Fork 20
30 lines (27 loc) · 1.05 KB
/
dev.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: Dev
# Controls when the action will run. Triggers the workflow on push or pull request
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
callVersion:
name: Create version number
uses: ./.github/workflows/template_version.yml
callBuild:
needs: [callVersion]
name: Build and publish artifact
uses: ./.github/workflows/template_build.yml
secrets: inherit
with:
Configuration: Debug
NUGETVERSIONV2: ${{ needs.callVersion.outputs.NUGETVERSIONV2 }}
SlnPath: ./src/SwedbankPay.Sdk.sln
SdkCsprojPath: ./src/SwedbankPay.Sdk.Infrastructure/SwedbankPay.Sdk.Infrastructure.csproj
SampleSiteCsprojPath: ./src/Samples/Sample.AspNetCore/Sample.AspNetCore.csproj
# SystemTestsCsprojPath: ./src/Samples/Sample.AspNetCore.SystemTests/Sample.AspNetCore.SystemTests.csproj
UnitTestsCsprojPath: ./src/SwedbankPay.Sdk.Tests/SwedbankPay.Sdk.Tests.csproj
# IntegrationTestsCsprojPath: ./src/SwedbankPay.Sdk.IntegrationTests/SwedbankPay.Sdk.IntegrationTests.csproj