We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fa80ce commit 9ad1503Copy full SHA for 9ad1503
2 files changed
.github/workflows/build.yml
@@ -4,7 +4,11 @@ on:
4
push:
5
branches: [v2.4]
6
paths:
7
- - src/box2dx/Box2D.NetStandard/**
+ - src/**
8
+ pull_request:
9
+ branches: [v2.4]
10
+ paths:
11
12
13
jobs:
14
build:
@@ -17,4 +21,4 @@ jobs:
17
21
with:
18
22
dotnet-version: "5.0.x"
19
23
- name: Box2D Build
20
- run: dotnet build src/box2dx/Box2D.NetStandard -c Release
24
+ run: dotnet build src/ -c Release
.github/workflows/unit-tests.yml
@@ -20,5 +20,5 @@ jobs:
uses: actions/setup-dotnet@v1
dotnet-version: "3.1.x"
- - name: Execute Tests
+ - name: Box2D Tests
run: dotnet test src/ -c Release
0 commit comments