Skip to content

chore: bump to vertx 4.5.0 #211

chore: bump to vertx 4.5.0

chore: bump to vertx 4.5.0 #211

Workflow file for this run

name: kotlin-co
on:
push:
paths:
- "kotlin-co/**"
branches:
- master
pull_request:
paths:
- "kotlin-co/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Start up databases via Docker Compose
run: |
docker-compose up -d postgres
docker ps -a
- name: Build kotlin-co
run: mvn clean install --file kotlin-co/pom.xml
# automerge:
# name: Merge pull request
# runs-on: ubuntu-latest
# needs: [build]
# if: >
# github.event_name == 'pull_request' &&
# github.event.pull_request.draft == false && (
# github.event.action == 'opened' ||
# github.event.action == 'reopened' ||
# github.event.action == 'synchronize'
# ) && (
# github.actor == 'dependabot[bot]'
# )
# steps:
# - name: Merge
# uses: actions/[email protected]
# with:
# script: |
# const pullRequest = context.payload.pull_request
# const repository = context.repo
# await github.pulls.merge({
# merge_method: "merge",
# owner: repository.owner,
# pull_number: pullRequest.number,
# repo: repository.repo,
# })
# github-token: ${{env.REPO_TOKEN}}