.github/workflows/specs.yml in graphiti-activegraph-0.1.22 vs .github/workflows/specs.yml in graphiti-activegraph-0.1.23

- old
+ new

@@ -16,16 +16,22 @@ test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: - ruby-version: [ jruby-9.4.3.0, ruby ] - + ruby-version: [ jruby ] + env: + JRUBY_OPTS: --debug -J-Xmx1280m -Xcompile.invokedynamic=false -J-XX:+TieredCompilation -J-XX:TieredStopAtLevel=1 -J-noverify -Xcompile.mode=OFF steps: - - uses: actions/checkout@v3 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby-version }} - bundler-cache: true - - name: Run tests - run: bundle exec rspec + - uses: actions/checkout@v3 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby-version }} + bundler-cache: true + - name: Set up Java + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: 17 + - name: Run tests + run: bundle exec rspec