Skip to content

[TECH]: Bump pl.allegro.tech.build.axion-release from 1.15.5 to 1.17.2 #176

[TECH]: Bump pl.allegro.tech.build.axion-release from 1.15.5 to 1.17.2

[TECH]: Bump pl.allegro.tech.build.axion-release from 1.15.5 to 1.17.2 #176

Workflow file for this run

name: Build and test
on:
push:
branches: [ main ]
paths:
- gateway-app/**
- gateway-ft/**
pull_request:
branches: [ main ]
paths:
- gateway-app/**
- gateway-ft/**
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'debug'
type: choice
options:
- info
- warning
- debug
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
- name: Build app
run: ./gradlew --no-daemon :gateway-app:build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
- name: Run unit tests
run: ./gradlew --no-daemon :gateway-app:test
- name: Run functional tests
run: ./gradlew --no-daemon :gateway-ft:cucumber