Skip to content

Commit

Permalink
Merge branch 'main' into server
Browse files Browse the repository at this point in the history
  • Loading branch information
connorwyatt authored Nov 4, 2023
2 parents 29d2b22 + 039e87d commit df7a48c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check Gradle project

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v3
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run check with Gradle Wrapper
run: ./gradlew check

0 comments on commit df7a48c

Please sign in to comment.