Skip to content

Commit

Permalink
add simple checks for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames committed Mar 5, 2024
1 parent 91ce8cf commit 9da7012
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Checks

on: [pull_request, push]

jobs:
build:
name: Run Checks
runs-on: ubuntu-latest
steps:
- name: Checkout the source
uses: actions/checkout@v4
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v2
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Run Gradle check task
run: ./gradlew check --continue

0 comments on commit 9da7012

Please sign in to comment.