Add Minecraft 1.20 as a separate step in the build #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |