Skip to content

🔨 Release workflow: workaround for bug in Gradle 8.10.1 #56

🔨 Release workflow: workaround for bug in Gradle 8.10.1

🔨 Release workflow: workaround for bug in Gradle 8.10.1 #56

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
jobs:
ci:
runs-on: ubuntu-22.04
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 21
- name: Check
run: ./gradlew check
- name: Upload reports
uses: actions/upload-artifact@v3
with:
name: reports
path: '*/build/reports'
if: always()