diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3980113..daa8d22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,15 +10,16 @@ on: - main jobs: - sbt-build: + test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: coursier/cache-action@v6 - - uses: olafurpg/setup-scala@v11 + - name: Checkout + uses: actions/checkout@v3 + - name: Setup JDK + uses: actions/setup-java@v3 with: - java-version: adopt@1.11 + distribution: temurin + java-version: 11 + cache: sbt - name: Build and Test - env: - PROUT_GITHUB_ACCESS_TOKEN: ${{ secrets.PROUT_GITHUB_ACCESS_TOKEN }} - run: sbt test \ No newline at end of file + run: sbt -v test \ No newline at end of file