Skip to content

Use KeyManagerFactory for client TLS credential setup (#88) #272

Use KeyManagerFactory for client TLS credential setup (#88)

Use KeyManagerFactory for client TLS credential setup (#88) #272

name: 'Continuous Integration'
on: [pull_request, push]
permissions: read-all
jobs:
ci-pipeline:
name: 'Continuous Integration'
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 2
submodules: true
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 11
- name: 'Build cache'
uses: actions/cache@v5
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: 'Check'
run: ./gradlew check -x integrationTest
- name: 'Integration test'
run: ./gradlew :pushiko-apns:integrationTest :pushiko-fcm:integrationTest
- name: 'Tear down'
if: always()
run: |
./gradlew --stop