From 160a24870c909d166ba3b3eb5942a27e14962bb3 Mon Sep 17 00:00:00 2001 From: ilia1243 <8808144+ilia1243@users.noreply.github.com> Date: Mon, 11 Nov 2024 23:46:07 +0300 Subject: [PATCH] test --- .github/workflows/ci.yml | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 765be54592..6dbc6dbc29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,29 +1,21 @@ name: CI on: - workflow_call: - inputs: - branch: - required: true - type: string - jdk: - default: 8 - type: string - os: - default: ubuntu-latest - type: string + push: + branches: + - test jobs: Test: name: Run tests - runs-on: ${{ inputs.os }} + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 with: - ref: ${{ inputs.branch }} + ref: test - name: Install JDK uses: actions/setup-java@v2 with: - java-version: ${{ inputs.jdk }} + java-version: 11 distribution: temurin - name: Run tests run: mvn -s .github/maven-ci-settings.xml clean verify -B