We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f58c581 commit 8ce0803Copy full SHA for 8ce0803
1 file changed
.github/workflows/ci-workflow.yml
@@ -1,5 +1,22 @@
1
name: build-develop
2
-on: push
+on:
3
+ push:
4
+ branches:
5
+ - github-ci
6
7
jobs:
8
+ build:
9
+ name: Compile
10
+ # This job runs on Linux
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v1
14
+ - name: Set up JDK 1.8
15
+ uses: actions/setup-java@v1
16
+ with:
17
+ java-version: 1.8
18
+ - name: Build with Maven
19
+ run: mvn package --file pom.xml
20
+ - run: echo The time was ${{ steps.hello.outputs.time }}
21
+
22
0 commit comments