Skip to content

Commit

Permalink
Port WI Zoom 1.4 to NeoForge 1.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander01998 committed Sep 24, 2023
0 parents commit 20cc7e2
Show file tree
Hide file tree
Showing 31 changed files with 1,823 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

custom: https://www.wurstclient.net/donate/?utm_source=GitHub&utm_medium=WI+Zoom&utm_campaign=FUNDING.yml
33 changes: 33 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Java CI with Gradle

on:
push:
paths:
- '**.java'
- 'gradle**'
- 'build.gradle'
pull_request:
paths:
- '**.java'
- 'gradle**'
- 'build.gradle'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Execute Gradle build
run: ./gradlew build
19 changes: 19 additions & 0 deletions .github/workflows/jsonsyntax.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: JSON syntax

on:
push:
paths:
- '**.json'
pull_request:
paths:
- '**.json'

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check JSON syntax
uses: limitusus/json-syntax-check@v2
with:
pattern: "\\.json$"
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# gradle

.gradle/
build/
out/
classes/
logs/

# idea

.idea/
*.iml
*.ipr
*.iws

# vscode

.settings/
.vscode/
bin/
.classpath
.project

# fabric

run/
*.launch

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

desktop.ini

# forge
eclipse
.metadata
.project
run-data
Loading

0 comments on commit 20cc7e2

Please sign in to comment.