Skip to content

dependency: Update dependency com.velocitypowered:velocity-api to v3.4.0 #1720

dependency: Update dependency com.velocitypowered:velocity-api to v3.4.0

dependency: Update dependency com.velocitypowered:velocity-api to v3.4.0 #1720

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: "Tests with JDK${{ matrix.jdk }}"
runs-on: ubuntu-latest
strategy:
matrix:
jdk: [ 17, 21, 25 ]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up JDK
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.jdk }}
distribution: 'adopt'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run Tests
run: ./gradlew clean test
env:
GIT_BRANCH: ${{ github.ref }}
GIT_COMMIT: ${{ github.sha }}