Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ilia1243 committed Nov 11, 2024
1 parent f4dd014 commit 160a248
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 160a248

Please # to comment.