From 08b03c1b5065d281b2d4e1152b3e2a8b0e508114 Mon Sep 17 00:00:00 2001 From: Charles Oliver Nutter Date: Thu, 23 May 2024 10:18:44 -0500 Subject: [PATCH] Enable specs in CI --- .github/workflows/maven.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 4fddfba9..b7e1dc72 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -27,8 +27,14 @@ jobs: java-version: '8' distribution: 'temurin' cache: maven + - uses: ruby/setup-ruby@v1 + with: + ruby-version: 'jruby' + bundler-cache: true - name: Build with Maven run: mvn -B install --file pom.xml + - name: Run specs + run: "bundle ; bundle exec rspec src/spec" # Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive - name: Update dependency graph