mirror of
https://github.com/extism/extism.git
synced 2026-01-10 14:27:57 -05:00
See #504 Removes CI for the in-repo SDKs, we can remove the actual code closer to the 1.0 release. --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: zshipko <zshipko@users.noreply.github.com>
30 lines
672 B
YAML
30 lines
672 B
YAML
on:
|
|
workflow_dispatch:
|
|
|
|
name: Java CI
|
|
|
|
jobs:
|
|
java:
|
|
name: Java
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
version: [11, 17]
|
|
rust:
|
|
- stable
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
- uses: ./.github/actions/extism
|
|
- name: Set up Java
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '${{ matrix.version }}'
|
|
- name: Test Java
|
|
run: |
|
|
cd java
|
|
mvn --batch-mode -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn verify
|
|
|