Skip to content

Added sbt wrapper and modified the verify build action to use it #73

Added sbt wrapper and modified the verify build action to use it

Added sbt wrapper and modified the verify build action to use it #73

name: Verify Build
on: [ push, pull_request, workflow_dispatch ]
jobs:
verification:
name: Verification
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- name: Build with sbt
run: ./sbtx clean test
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}