Skip to content

Update reference tests (#582) #1

Update reference tests (#582)

Update reference tests (#582) #1

Workflow file for this run

name: Java
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive
- uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
with:
distribution: "temurin"
java-version: "11"
- name: Build blst
run: |
cd src
make blst
- name: Build and Test
run: |
cd bindings/java
make build test