Automate the stress testing of a Minecraft server network using bots
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Upload artifact

And run for all branches, not just main

authored by

PureGero and committed by
GitHub
f22d3c6b 65b59aad

+5 -5
+5 -5
.github/workflows/build.yml
··· 1 1 name: CI 2 2 3 - on: 4 - push: 5 - branches: [ "main" ] 6 - pull_request: 7 - branches: [ "main" ] 3 + on: [ push, pull_request ] 8 4 9 5 jobs: 10 6 build: ··· 21 17 cache: maven 22 18 - name: Build with Maven 23 19 run: mvn -B package --file pom.xml 20 + - name: Upload Jar 21 + uses: actions/upload-artifact@v2 22 + with: 23 + path: target/minecraft-stress-test-*-SNAPSHOT.jar