File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ name: Build
3
3
on :
4
4
push :
5
5
branches : [v2.4]
6
+ paths :
7
+ - src/box2dx/Box2D.NetStandard/**
6
8
7
9
jobs :
8
10
build :
13
15
- name : Setup .NET Core
14
16
uses : actions/setup-dotnet@v1
15
17
with :
16
- dotnet-version : ' 5.0.x'
18
+ dotnet-version : " 5.0.x"
17
19
- name : Box2D Build
18
- run : dotnet build src/box2dx/Box2D.NetStandard -c Release
20
+ run : dotnet build src/box2dx/Box2D.NetStandard -c Release
Original file line number Diff line number Diff line change @@ -3,8 +3,12 @@ name: Unit Tests
3
3
on :
4
4
push :
5
5
branches : [v2.4]
6
+ paths :
7
+ - src/**
6
8
pull_request :
7
9
branches : [v2.4]
10
+ paths :
11
+ - src/**
8
12
9
13
jobs :
10
14
build :
15
19
- name : Setup .NET Core
16
20
uses : actions/setup-dotnet@v1
17
21
with :
18
- dotnet-version : ' 3.1.x'
22
+ dotnet-version : " 3.1.x"
19
23
- name : Execute Tests
20
- run : dotnet test src/ -c Release
24
+ run : dotnet test src/ -c Release
You can’t perform that action at this time.
0 commit comments