Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
ci: Add build job.
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenheroux committed Mar 4, 2024
1 parent 571073e commit a67b0d2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 17 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- run: ./gradlew build
spotless:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- run: ./gradlew spotlessCheck
17 changes: 0 additions & 17 deletions .github/workflows/spotless.yml

This file was deleted.

0 comments on commit a67b0d2

Please sign in to comment.