Skip to content

Commit 8d3e062

Browse files
committed
Add github action testing to develop branch
1 parent 56f0d9a commit 8d3e062

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ name: Build and Test
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches:
9+
- master
10+
- develop
911
pull_request:
10-
branches: [ master ]
12+
branches:
13+
- master
14+
- develop
1115

1216
jobs:
1317
build-and-test:
@@ -25,7 +29,7 @@ jobs:
2529
# This is the current issue: https://github.com/actions/runner/issues/2033
2630
# Can set 'options: --user 1001' on the container to match the UID of the Github runner, ref:
2731
# https://github.com/actions/runner/blob/8415f13babf8199551f817eb16b718dcdd5b31e2/images/Dockerfile#L38
28-
32+
2933
- uses: actions/checkout@v3
3034
with:
3135
fetch-depth: 0
@@ -61,4 +65,4 @@ jobs:
6165
uses: actions/upload-artifact@v3
6266
with:
6367
name: segway-build
64-
path: dist/*
68+
path: dist/*

0 commit comments

Comments
 (0)