Skip to content

Commit

Permalink
yay
Browse files Browse the repository at this point in the history
  • Loading branch information
Coccocoahelper authored Apr 28, 2024
1 parent 563a132 commit 039e911
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build

on:
pull_request:
branches: [ legacy ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: "adopt"
java-version: 8
cache: "gradle"
- name: Build
run: ./gradlew setupCiWorkspace && ./gradlew build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: LiquidBounce
path: build/libs/*

0 comments on commit 039e911

Please sign in to comment.