Skip to content

Commit 07b96cf

Browse files
committed
Add a test action in testjbs branch
1 parent f9df5b0 commit 07b96cf

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/testjbs.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test for testjbs branch
2+
on:
3+
push:
4+
branches:
5+
- testjbs
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
services:
11+
mongodb:
12+
image: mongo:3.2
13+
ports:
14+
- 27017:27017
15+
steps:
16+
- name: Checkout source code
17+
uses: actions/checkout@v2
18+
- name: Set up JDK 11.0.11
19+
uses: actions/setup-java@v1
20+
with:
21+
java-version: 11.0.11
22+
- name: Run local migration
23+
run: ./gradlew run

0 commit comments

Comments
 (0)