Skip to content

Commit

Permalink
[master] Added CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
rcardin committed Sep 14, 2023
1 parent d1c5225 commit 8a866f0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: assertj-arrow-core

on:
push:
branches:
- '**'
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Maven
run: mvn -B package --file pom.xml

0 comments on commit 8a866f0

Please sign in to comment.