Skip to content

GH-23 Replace use of DO LOOP in standard words (they're a pain). #57

GH-23 Replace use of DO LOOP in standard words (they're a pain).

GH-23 Replace use of DO LOOP in standard words (they're a pain). #57

Workflow file for this run

name: Continuous Integration (because stating the obvious is hilarious)
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
architecture: 'x64'
- name: configure
run: ./configure
- name: make
run: make
- name: make test
run: make test
- name: test with JNI
run: cd jni && make test
- name: make distclean
run: make distclean