Add scoping for Lazy containers with keys list to scope objects #374
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: Unit tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
name: Run Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Run API Check | |
run: ./gradlew apiCheck | |
- name: Run Lint | |
run: ./gradlew lint | |
- name: Run tests with code coverage | |
run: ./gradlew check | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 |