Skip to content

fix: update alias creation method and url for compatibility #66

fix: update alias creation method and url for compatibility

fix: update alias creation method and url for compatibility #66

Workflow file for this run

name: Quality
on:
merge_group:
pull_request:
branches: [ main ]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '22'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Run Build
run: ./gradlew build
- name: Add coverage to PR
if: ${{ github.event_name == 'pull_request' }}
uses: madrapps/[email protected]
with:
paths: ${{ github.workspace }}/**/build/reports/kover/report.xml
token: ${{ secrets.GITHUB_TOKEN }}
update-comment: true
title: Coverage Report
min-coverage-changed-files: 0
min-coverage-overall: 0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
run: docker build -t pillarbox-monitoring-transfer .