Skip to content

Commit

Permalink
Create bruh.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ArduFish authored Jul 13, 2024
1 parent e182e6a commit 86673a3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/bruh.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.

name: bruh
on: [workflow_dispatch]

jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [
21, # Current Java LTS
]
runs-on: ubuntu-22.04
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v2
- name: setup jdk ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'microsoft'
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: build
run: ./gradlew runServer

0 comments on commit 86673a3

Please sign in to comment.