Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Create maven.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
berezovskyi authored Nov 9, 2020
1 parent db96d79 commit b49e82b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build new Lyo Client
run: mvn -B package --file oslc4j-client/pom.xml
- name: Build legacy oslc-java-client
run: mvn -B package --file oslc-java-client/pom.xml

0 comments on commit b49e82b

Please sign in to comment.