Skip to content

Commit

Permalink
SMA-4-Enabled automatic tests and code style checks
Browse files Browse the repository at this point in the history
  • Loading branch information
markpernia committed Jan 17, 2024
1 parent d6fdf50 commit 4a1604d
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,28 @@
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle


#### Uncoment this once you setup spring boot, it will run automatic tests and code style checks
# name: Java CI with Gradle
### Uncoment this once you setup spring boot, it will run automatic tests and code style checks
name: Java CI with Gradle

# on:
# [push, pull_request]
on:
[push, pull_request]

# permissions:
# contents: read
permissions:
contents: read

# jobs:
# build:
jobs:
build:

# runs-on: ubuntu-latest
runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v3
# - name: Set up JDK 17
# uses: actions/setup-java@v3
# with:
# java-version: '17'
# distribution: 'temurin'
# - name: Build with Gradle
# uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
# with:
# arguments: build
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
arguments: build

0 comments on commit 4a1604d

Please sign in to comment.