Merge pull request #216 from atsign-foundation/dependabot/github_acti… #414
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: Java at_client CI | |
on: | |
push: | |
branches: | |
- trunk | |
pull_request: | |
branches: | |
- trunk | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
jobs: | |
test-and-build: | |
defaults: | |
run: | |
working-directory: at_client | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set up JDK 8 and maven cache | |
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
cache: maven | |
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml | |
- name: Build clean and run unit tests | |
run: mvn --batch-mode clean test -DskipIntegrationTests=true -Dgpg.skip=true | |
- name: Run integration tests | |
run: mvn --batch-mode verify -DskipUnitTests=true -Dgpg.skip=true | |
- name: Generate build outputs | |
run: mvn --batch-mode install -DskipTests=true --update-snapshots --no-transfer-progress -Dgpg.skip=true |