Port to 1.20.4 multiloader for neo and fabric. #1
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: Run a test build. | |
on: | |
push: | |
branches: | |
- dev | |
paths-ignore: | |
- '.github/**' | |
- '*.md' | |
pull_request: | |
branches: | |
- dev | |
paths-ignore: | |
- '.github/**' | |
- '*.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest commit. | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
- name: Setup Gradle | |
uses: gradle/gradle-build-actions@v2 | |
with: | |
gradle-version: 8.1.1 | |
- name: Build with Gradle | |
run: ./gradlew build |