Skip to content

fix: RedisEnchanceKeyValueAdapter#put make DEL/HMSET combo in a pipeline #307

fix: RedisEnchanceKeyValueAdapter#put make DEL/HMSET combo in a pipeline

fix: RedisEnchanceKeyValueAdapter#put make DEL/HMSET combo in a pipeline #307

Workflow file for this run

name: Integration
on:
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: cache
uses: actions/cache@v2
with:
path: |
~/.mv2/repository
key: om-${{hashFiles('**/pom.xml')}}
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'zulu'
- run: mvn dependency:go-offline
- name: Build
run: mvn clean process-test-classes verify
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}