Skip to content

Commit

Permalink
Merge pull request #2 from datalogics-saharay/add-github-actions
Browse files Browse the repository at this point in the history
Add initial Github Actions CI for Kotlin sample
  • Loading branch information
datalogics-josepha authored Jan 17, 2024
2 parents 64fd16f + 5bd4c2f commit b916163
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test-kotlin-samples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: test-kotlin-samples-with-java-maven-package

on:
pull_request:
push:
branches: [ develop ]

env:
JAVA_VERSION: '11'

jobs:
build-and-run-samples:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-13]
dir: ['TextExtract']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v2
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: 'adopt'

0 comments on commit b916163

Please sign in to comment.