Skip to content

Commit

Permalink
Add GitHub actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dmssargent committed Jul 6, 2024
1 parent 22a50eb commit c89d37b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: StubJars build
run-name: ${{ github.actor }} is testing code 🚀
on:
- push
jobs:
test_stubjars:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11 for x64
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'corretto'
architecture: x64
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1.1.0
- name: Build the code
uses: gradle/gradle-build-action@v2.9.0
with:
arguments: assemble
- name: Run the test suite
uses: gradle/gradle-build-action@v2.9.0
with:
arguments: test

0 comments on commit c89d37b

Please sign in to comment.