Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Aug 15, 2023
1 parent 692f969 commit c282ffe
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: childprocess-vertx-ext
on:
push:
branches:
- master
- '[0-9]+.[0-9x]+'
pull_request:
branches:
- master
- '[0-9]+.[0-9x]+'
schedule:
- cron: '* 4 * * *'
jobs:
Test:
name: Run tests
strategy:
matrix:
os: [ubuntu-latest]
jdk: [11, 17]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install JDK
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.jdk }}
distribution: temurin
- name: Run tests
run: mvn -q clean verify -B

0 comments on commit c282ffe

Please sign in to comment.