Skip to content

update publish readme #44

update publish readme

update publish readme #44

Workflow file for this run

name: SDK CI
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main, master]
permissions:
contents: read
jobs:
# Check for lint issues
lint:
name: Test & Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Maven Central Repository
uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'temurin'
# Execute unit tests.
- name: Run unit tests
run: cd zero-bounce-sdk && mvn test
# Compile the project to check for errors.
- name: Compile project
run: cd zero-bounce-sdk && mvn clean install