Skip to content

Commit 8ce0803

Browse files
first workflow
1 parent f58c581 commit 8ce0803

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

.github/workflows/ci-workflow.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
name: build-develop
2-
on: push
2+
on:
3+
push:
4+
branches:
5+
- github-ci
36

47
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+
522

0 commit comments

Comments
 (0)