Skip to content

fix: default interactions feature flag is not working correctly. #387

fix: default interactions feature flag is not working correctly.

fix: default interactions feature flag is not working correctly. #387

name: Android Integration Test Workflows
on:
push:
branches: [ "develop", "main" ]
pull_request:
branches: [ "develop", "main" ]
workflow_dispatch:
jobs:
integration-plugin:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Set up Gradle
uses: gradle/[email protected]
with:
gradle-version: current
- name: Stage with Gradle
run: ./gradlew publish
- name: Test with Gradle
run: ./gradlew :plugins:gradle:integrationTests
- name: Upload build reports
uses: actions/upload-artifact@v3
with:
name: integration-test-reports
path: |
build/reports/tests/test/index.html
build/reports/tests/integrationTests/index.html
if-no-files-found: ignore
retention-days: 3