dmssargent is testing code π #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
- name: Build the code | |
uses: gradle/[email protected] | |
with: | |
arguments: assemble | |
- name: Run the test suite | |
uses: gradle/[email protected] | |
with: | |
arguments: test | |