Skip to content

Commit

Permalink
Create simple GitHub Actions CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hudson155 committed Aug 26, 2024
1 parent 683f194 commit bc2757b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Build"

on: "push"

jobs:
build:
runs-on: "ubuntu-24.04"
steps:
- name: "Check out"
uses: "actions/[email protected]"
- name: "Set up Java"
uses: "actions/[email protected]"
with:
java-version: "21"
distribution: "corretto"
cache: "gradle"
- name: "Build"
run: "./gradlew build"

0 comments on commit bc2757b

Please sign in to comment.