Skip to content

remove empty comments #33

remove empty comments

remove empty comments #33

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
env:
LD_LIBRARY_PATH: ./src/main/c/build
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Verify JAVA_HOME is set
run: echo "JAVA_HOME is set to $JAVA_HOME"
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake clang-format
- name: Install Conan
run: pip install 'conan==2.24.0'
- name: Make build script executable
run: chmod +x tasks.sh
- name: Check dependencies
run: ./tasks.sh check_deps
- name: Compile OGO
run: ./tasks.sh compile_ogo
- name: Run tests
run: ./tasks.sh test_ogo