Skip to content

Bump de.gesellix:gradle-docker-plugin from 2023-10-18T23-25-00 to 2023-11-05T19-45-00 #314

Bump de.gesellix:gradle-docker-plugin from 2023-10-18T23-25-00 to 2023-11-05T19-45-00

Bump de.gesellix:gradle-docker-plugin from 2023-10-18T23-25-00 to 2023-11-05T19-45-00 #314

Workflow file for this run

name: CI
on: [ pull_request ]
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
# creates a new check with unit test results
checks: write
# needs to git diff the repo
contents: read
# find the pr for this commit
issues: read
# write artifacts and comment on pr related to this
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: 17
cache: 'gradle'
- name: clean build
run: ./gradlew clean build --no-daemon --info --stacktrace
- name: Upload Test Results
# see ci-test.check.yml for workflow that publishes test results without security issues for forks
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: check-ci-results
path: '**/build/test-results/test/TEST-*.xml'