Skip to content

Commit 425e1b2

Browse files
committed
Remove labels and some checks
1 parent 6edf771 commit 425e1b2

File tree

2 files changed

+4
-49
lines changed

2 files changed

+4
-49
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -4,55 +4,10 @@ on:
44
push:
55
pull_request:
66

7-
jobs:
8-
checkstyle:
9-
name: Checkstyle
10-
runs-on: ubuntu-latest
11-
12-
steps:
13-
- name: Checkout code
14-
uses: actions/checkout@v3
15-
16-
- name: Set up JDK 21
17-
uses: actions/setup-java@v3
18-
with:
19-
distribution: 'temurin'
20-
java-version: '21'
21-
22-
- name: Build with Maven
23-
run: mvn clean install
24-
25-
- name: Run Checkstyle
26-
run: mvn checkstyle:check
27-
28-
- name: Archive Checkstyle Reports
29-
if: failure()
30-
uses: actions/upload-artifact@v3
31-
with:
32-
name: checkstyle-reports
33-
path: target/checkstyle-result.xml
34-
35-
unit-tests:
36-
name: Unit Tests
37-
runs-on: ubuntu-latest
38-
39-
steps:
40-
- name: Checkout code
41-
uses: actions/checkout@v3
42-
43-
- name: Set up JDK 21
44-
uses: actions/setup-java@v3
45-
with:
46-
distribution: 'temurin'
47-
java-version: '21'
48-
49-
- name: Run Unit Tests
50-
run: mvn test
51-
7+
jobs:
528
integration-tests:
539
name: Plugin Integration Tests
5410
runs-on: ubuntu-latest
55-
needs: [unit-tests]
5611
strategy:
5712
fail-fast: false
5813
matrix:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# MinecraftServerAPI
2-
<img src="https://img.shields.io/github/actions/workflow/status/Shweit/MinecraftServerAPI/runtime.yml" /> <img src="https://img.shields.io/github/v/release/Shweit/MinecraftServerAPI" /> <img src="https://img.shields.io/github/license/Shweit/MinecraftServerAPI" />
2+
<img src="https://img.shields.io/github/actions/workflow/status/Shweit/MinecraftServerAPI/runtime.yml" /> <img src="https://img.shields.io/github/license/Shweit/MinecraftServerAPI" />
33

44
## Overview
55
**MinecraftServerAPI** is a powerful and flexible plugin for Minecraft servers, providing RESTful APIs to interact with the server programmatically. This project allows server administrators to automate tasks, gather information, manage the server more efficiently, and even trigger WebHooks for various server events.
@@ -30,11 +30,11 @@ mvn clean install
3030
### Setting up the Minecraft Server
3131
3. Copy the generated JAR file to the `plugins` directory of your Minecraft server.
3232
```shell
33-
cp target/MinecraftServerAPI-1.0.jar /path/to/your/minecraft/server/plugins
33+
cp target/MinecraftServerAPI-*.jar /path/to/your/minecraft/server/plugins
3434
```
3535
4. Start or restart your Minecraft server.
3636
```shell
37-
java -Xmx1024M -Xms1024M -jar paper-1.21.jar nogui
37+
java -Xmx1024M -Xms1024M -jar paper-instance.jar nogui
3838
```
3939
5. Once the server is running, the plugin will be loaded automatically. You can verify it by running:
4040
```shell

0 commit comments

Comments
 (0)