Skip to content

Add Minecraft 1.20 as a separate step in the build #13

Add Minecraft 1.20 as a separate step in the build

Add Minecraft 1.20 as a separate step in the build #13

Workflow file for this run

name: Build & Test (snapshot)
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
workflow_dispatch: #manual trigger
push:
branches:
- snapshot
pull_request:
branches:
- snapshot
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Sets up JDK 21 as using standard setup, the minimum Java version since Minecraft 1.21
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: microsoft
java-version: 21
# Run against supported Minecraft versions
- name: Build and test (Minecraft version = latest snapshot, variant = vanilla)
run: bin/ci.sh --clean --version snapshot