Skip to content

updated JDK version in Gitpod config #10

updated JDK version in Gitpod config

updated JDK version in Gitpod config #10

Workflow file for this run

name: Scala CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Run tests
run: sbt coverage test coverageReport
- name: Submit coverage report
run: bash <(curl -s https://codecov.io/bash)