Skip to content

Docs: fix blog mp4 embeds with video tags #487

Docs: fix blog mp4 embeds with video tags

Docs: fix blog mp4 embeds with video tags #487

Workflow file for this run

name: Java
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Render Templates
run: bundle exec rake templates
- name: Compile Herb
run: bundle exec rake make
- name: Build JNI library
run: make jni
working-directory: java
- name: Compile Java classes
run: make java
working-directory: java
- name: Run tests
run: ./run_tests.sh
working-directory: java
- name: Test CLI version command
run: ./bin/herb-java version
working-directory: java