-
Notifications
You must be signed in to change notification settings - Fork 158
40 lines (34 loc) · 882 Bytes
/
Copy pathgametests.yml
File metadata and controls
40 lines (34 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: build
on:
push:
paths:
- 'common/src/main/java/**'
- 'fabric/src/main/java/**'
- 'neoforge/src/main/java/**'
- '**/gradle.properties'
- '**/settings.gradle'
- '**/build.gradle'
- '.github/workflows/gametests.yml'
pull_request:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v6
- name: Setup Java
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 21
cache: gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v6
- name: Make Gradle Wrapper Executable
run: chmod +x ./gradlew
- name: Execute Gradle build
run: ./gradlew build
- name: Run game tests
run: ./gradlew neoforge:runGameTest