Skip to content

Update scala-xml to 2.3.0 (#837) #377

Update scala-xml to 2.3.0 (#837)

Update scala-xml to 2.3.0 (#837) #377

name: Codecov
on:
push:
branches: [master]
jobs:
codecov:
name: Run codecov on master
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 11
- uses: actions/cache@v4
with:
path: ~/.ivy2/cache
key: ivy-${{hashFiles('**/*.sbt')}}
restore-keys: ivy-
- uses: actions/cache@v4
with:
path: ~/.sbt
key: sbt-${{hashFiles('**/*.sbt')}}-${{hashFiles('project/build.properties')}}
restore-keys: sbt-
- name: Generate coverage report
run: sbt clean coverage test coverageReport
- uses: codecov/codecov-action@v4