build(deps): bump actions/checkout from 3.5.3 to 4.1.4 #267
Workflow file for this run
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] | |
# cross-version steps run separately for clarity as well as circumventing issues with running out of meta-space | |
jobs: | |
test-and-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Check Scala style | |
run: sbt scalafmtCheckAll | |
- name: Run cross-version tests for 2.11 | |
run: sbt '++ 2.11.12 test' | |
- name: Run cross-version tests for 2.12 | |
run: sbt '++ 2.12.12 test' | |
- name: Run cross-version tests for 2.13 | |
run: sbt '++ 2.13.4 test' | |
- name: Run local publish | |
run: sbt publishLocal | |
- name: Run test coverage | |
run: sbt coverage test | |
- name: Generate coverage report | |
run: sbt coverageReport | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
fail_ci_if_error: true |