From 5af90fe590d5e242dec26370acb74c259616cc5b Mon Sep 17 00:00:00 2001 From: Roman Pierson Date: Wed, 8 Nov 2023 22:32:42 +0100 Subject: [PATCH] Change actions --- .github/workflows/ci-vert.x-4.x.yml | 24 +++++++++++++++++++ .../workflows/{ci.yml => ci-vert.x-5.x.yml} | 3 +-- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/ci-vert.x-4.x.yml rename .github/workflows/{ci.yml => ci-vert.x-5.x.yml} (93%) diff --git a/.github/workflows/ci-vert.x-4.x.yml b/.github/workflows/ci-vert.x-4.x.yml new file mode 100644 index 0000000..7738103 --- /dev/null +++ b/.github/workflows/ci-vert.x-4.x.yml @@ -0,0 +1,24 @@ +name: vert.x (4.x) + +on: + push: + branches: + - vert.x-4.x + +jobs: + ci: + name: Any (supported) + strategy: + fail-fast: false + matrix: + os: [ ubuntu-latest ] + java: [ 11 ] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 + with: + java-version: ${{ matrix.java }} + distribution: temurin + - name: Build project + run: ./gradlew clean build diff --git a/.github/workflows/ci.yml b/.github/workflows/ci-vert.x-5.x.yml similarity index 93% rename from .github/workflows/ci.yml rename to .github/workflows/ci-vert.x-5.x.yml index 391b8f6..6aa3673 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci-vert.x-5.x.yml @@ -1,10 +1,9 @@ -name: CI +name: vert.x (5.x) on: push: branches: - master - - feature/vertx5 jobs: ci: