Skip to content

build(deps): Bump actions/checkout from 4.1.6 to 4.1.7 #385

build(deps): Bump actions/checkout from 4.1.6 to 4.1.7

build(deps): Bump actions/checkout from 4.1.6 to 4.1.7 #385

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up JDK 8 and maven cache
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
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