build(deps): bump codecov/codecov-action from 3.1.1 to 4.5.0 #235
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: [push, pull_request] | |
jobs: | |
test-and-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.2 | |
- name: Run cross-version tests | |
run: sbt +test | |
- name: Run coverage | |
run: sbt coverage test | |
- name: Coverage Report | |
run: sbt coverageReport | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4.5.0 | |
with: | |
fail_ci_if_error: true | |
# lint: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4.1.2 | |
# - name: Formatting | |
# run: sbt scalafmtSbtCheck scalafmtCheck test:scalafmtCheck |