Skip to content

Merge pull request #139 from atsign-foundation/dependabot/github_acti… #265

Merge pull request #139 from atsign-foundation/dependabot/github_acti…

Merge pull request #139 from atsign-foundation/dependabot/github_acti… #265

Workflow file for this run

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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Set up JDK 8 and maven cache
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
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