Skip to content

Start adding integration tests #137

Start adding integration tests

Start adding integration tests #137

Workflow file for this run

name: Build
on:
# Trigger on push to develop or main branches
push:
branches:
- develop
- main
# Trigger on pull request (any branch that creates a PR)
pull_request:
branches:
- develop
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build
run: mvn --batch-mode --update-snapshots install
- name: Integration tests
run: mvn clean install -pl it.tests -Pit