Add support for batch loading of a Map of key-value pairs. #114
   This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters   
     | name: Pull Request Build | |
| # For pull requests: builds and test | |
| on: | |
| push: | |
| branches: | |
| - '!master' | |
| pull_request: | |
| branches: | |
| - master | |
| - reactive-streams-branch | |
| - '**' | |
| jobs: | |
| buildAndTest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: gradle/wrapper-validation-action@v1 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: '11.0.23' | |
| - name: build and test | |
| run: ./gradlew assemble && ./gradlew check --info --stacktrace |