Skip to content

Include setup-scala step in CI #184

Include setup-scala step in CI

Include setup-scala step in CI #184

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
# triggering CI default branch improves caching
# see https://docs.github.com/en/free-pro-team@latest/actions/guides/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: guardian/setup-scala@v1
- name: Build and Test
env:
PROUT_GITHUB_ACCESS_TOKEN: ${{ secrets.PROUT_GITHUB_ACCESS_TOKEN }}
run: sbt -v test
- name: Test Summary
uses: test-summary/action@v2
if: always()
with:
paths: "test-results/**/TEST-*.xml"