Skip to content

Implement /sdk/v2/flags API call and LoadStoreCache for flag configurations #170

Implement /sdk/v2/flags API call and LoadStoreCache for flag configurations

Implement /sdk/v2/flags API call and LoadStoreCache for flag configurations #170

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'zulu'
- name: Cache Gradle Dependencies
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }}
- name: Test
run: ./gradlew test --info --stacktrace