Skip to content

build: bump org.jetbrains:annotations from 26.0.2 to 26.0.2-1 #16

build: bump org.jetbrains:annotations from 26.0.2 to 26.0.2-1

build: bump org.jetbrains:annotations from 26.0.2 to 26.0.2-1 #16

Workflow file for this run

name: PR Tests
on:
pull_request:
branches:
- "*"
workflow_dispatch:
inputs:
java:
description: 'Java version'
type: number
default: 21
os:
description: 'OS'
type: choice
default: 'ubuntu-latest'
options:
- 'ubuntu-latest'
- 'windows-latest'
- 'macos-latest'
permissions:
contents: write
checks: write
jobs:
test:
name: Test
uses: ./.github/workflows/test.yml
with:
os: ${{ inputs.os || 'ubuntu-latest' }}
java: ${{ inputs.java || 21 }}
fail_on_test_failure: true