fix(deps): update dependency io.projectreactor:reactor-core to v3.6.6 #24
Workflow file for this run
This file contains 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: Build Recipes | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'recipes/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'recipes/**' | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
services: | |
docker: | |
image: docker:dind | |
options: --privileged | |
steps: | |
- name: Configure JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Gradle Build and Test | |
uses: gradle/[email protected] | |
with: | |
arguments: -p recipes --build-cache build test e2eTest |