Skip to content

fix: Templating Omission/Combinations #127

fix: Templating Omission/Combinations

fix: Templating Omission/Combinations #127

Workflow file for this run

name: Grails CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./service
steps:
- uses: actions/checkout@v1
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Start containers
run: |
cd ../tools/testing
docker-compose -f "docker-compose.yml" up -d
- name: Build with Gradle
run: |
./gradlew --refresh-dependencies clean buildImage
- name: Stop containers
run: |
cd ../tools/testing
docker-compose -f "docker-compose.yml" down -v
- name: Upload Unit Test Results
if: always()
uses: actions/upload-artifact@v2
with:
name: Unit Test Results
path: |
service/build/test-results/**/*.xml
service/build/spock-reports/*.html
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: |
service/build/test-results/**/*.xml