Skip to content

Feat fix/begin using new protocols and rewrite prelude #1

Feat fix/begin using new protocols and rewrite prelude

Feat fix/begin using new protocols and rewrite prelude #1

Workflow file for this run

name: PR Tests
on:
workflow_dispatch:
pull_request:
branches: [ 'master' ]
permissions:
contents: read
checks: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Checkout for CI 🛎'
uses: actions/checkout@v4
- name: 'Set up JDK 11 📦'
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- name: 'Build with Gradle 🏗️'
uses: gradle/gradle-build-action@v3
with:
arguments: test
- name: 'Publish Test Report 📊'
uses: mikepenz/action-junit-report@v4
if: success() || failure() # Continue on failure
with:
report_paths: '**/build/test-results/test/TEST-*.xml'