Skip to content

Commit

Permalink
first workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzBuehmann committed Aug 28, 2019
1 parent f58c581 commit 8ce0803
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci-workflow.yml
@@ -1,5 +1,22 @@
name: build-develop
on: push
on:
push:
branches:
- github-ci

jobs:
build:
name: Compile
# This job runs on Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn package --file pom.xml
- run: echo The time was ${{ steps.hello.outputs.time }}


0 comments on commit 8ce0803

Please sign in to comment.