Skip to content

first attempt at automatic deletion taking into account contained ref… #127

first attempt at automatic deletion taking into account contained ref…

first attempt at automatic deletion taking into account contained ref… #127

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Run tests on gradle plugin sample
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup gradle
uses: gradle/actions/setup-gradle@v3
- name: Build the Runtime
run: |
./gradlew :java:publishToMavenLocal -PskipSigning=True
- name: Build ivoa model with Gradle
run : |
./gradlew :ivoa:publishToMavenLocal -PskipSigning=True
- name: Test sample model with Gradle
run: |
./gradlew :sample:test -PskipSigning=True
- name: Validate sample model with Gradle
run : |
./gradlew :sample:vodmlValidate -PskipSigning=True
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: |
./**/reports/**/test/*.xml