Skip to content

Commit

Permalink
Merge pull request #7 from rhysdh540/main
Browse files Browse the repository at this point in the history
general improvements
  • Loading branch information
a0a7 authored Oct 23, 2023
2 parents 2e3a92e + d9dfeee commit 7f30106
Show file tree
Hide file tree
Showing 1,460 changed files with 13,290 additions and 1,037,551 deletions.
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# http://editorconfig.org
root = true

[*]
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
max_line_length = 120

[{*.json,*.mcmeta}]
indent_style = space
indent_size = 2

[{*.java,*.gradle}]
ij_continuation_indent_size = 4
ij_java_class_count_to_use_import_on_demand = 99
ij_java_names_count_to_use_import_on_demand = 99
ij_java_imports_layout = $*, |, java.**, |, javax.**, |, org.**, |, com.simibubi.**, |, com.mojang.**, |, net.minecraft.**, |, net.minecraftforge.**, |, dev.rdh.**, |, **
46 changes: 46 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: build
on: [ pull_request, push ]

jobs:
build:
if: "!startsWith(github.event.head_commit.message, '[skip]')"
strategy:
matrix:
java: [ 17 ]
runs-on: ubuntu-latest
steps:

- name: checkout repository
uses: actions/checkout@v3

- name: setup jdk ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: zulu

- name: cache gradle
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/loom-cache
~/.gradle/wrapper
~/src/generated/resources/.cache
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }}
restore-keys: ${{ runner.os }}-gradle

- name: give gradle execution permissions
run: chmod +x ./gradlew

- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@9aa31f26bc8e536d1faf4b332bb8365350743a18

- name: building
run: ./gradlew build

- name: upload build artifacts
uses: actions/upload-artifact@v3
with:
name: interior-artifacts
path: build/libs/*.jar
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.idea
build
.gradle
run
.DS_Store
Binary file removed .gradle/8.1.1/checksums/checksums.lock
Binary file not shown.
Binary file removed .gradle/8.1.1/checksums/md5-checksums.bin
Binary file not shown.
Binary file removed .gradle/8.1.1/checksums/sha1-checksums.bin
Binary file not shown.
Binary file not shown.
Empty file.
Binary file removed .gradle/8.1.1/executionHistory/executionHistory.bin
Binary file not shown.
Binary file removed .gradle/8.1.1/executionHistory/executionHistory.lock
Binary file not shown.
Binary file removed .gradle/8.1.1/fileChanges/last-build.bin
Binary file not shown.
Binary file removed .gradle/8.1.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file removed .gradle/8.1.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file removed .gradle/8.1.1/fileHashes/resourceHashesCache.bin
Binary file not shown.
Empty file removed .gradle/8.1.1/gc.properties
Empty file.
Binary file removed .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 0 additions & 2 deletions .gradle/buildOutputCleanup/cache.properties

This file was deleted.

Binary file removed .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file removed .gradle/file-system.probe
Binary file not shown.
Empty file removed .gradle/vcs-1/gc.properties
Empty file.
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions .idea/compiler.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/discord.xml

This file was deleted.

16 changes: 0 additions & 16 deletions .idea/gradle.xml

This file was deleted.

Binary file added .idea/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 0 additions & 40 deletions .idea/jarRepositories.xml

This file was deleted.

15 changes: 0 additions & 15 deletions .idea/misc.xml

This file was deleted.

11 changes: 0 additions & 11 deletions .idea/modules.xml

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/modules/CreateInteriorsMod-1.19.2.main.iml

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/modules/CreateInteriorsMod-1.19.2.test.iml

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/modules/ExtendedSeatingMod.main.iml

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/modules/ExtendedSeatingMod.test.iml

This file was deleted.

18 changes: 0 additions & 18 deletions .idea/runConfigurations/runClient.xml

This file was deleted.

18 changes: 0 additions & 18 deletions .idea/runConfigurations/runData.xml

This file was deleted.

18 changes: 0 additions & 18 deletions .idea/runConfigurations/runGameTestServer.xml

This file was deleted.

Loading

0 comments on commit 7f30106

Please sign in to comment.