Skip to content

#OBG-172 changed readme file. #576

#OBG-172 changed readme file.

#OBG-172 changed readme file. #576

Workflow file for this run

name: Pull Request CI
on:
pull_request:
branches:
- develop
jobs:
build:
name: Build project, build docker image
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: 11
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build project
run: mvn clean package -B
- name: Build docker image
env:
XS2A_ADAPTER_IMAGE: xs2a-adapter
IMAGE_TAG: test
run: docker build -t ${XS2A_ADAPTER_IMAGE}:${IMAGE_TAG} .