Code is very close to completion. Just need to add layout logic to add to syllabus. #130
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: FE Dev PR pipeline. | |
on: | |
pull_request: | |
branches: ["development"] | |
jobs: | |
build: | |
name: Dev PR Front End | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: 'front_end' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: Set Up Gradle | |
run: gradle wrapper | |
- name: Build Gradle | |
run: ./gradlew assembleDebug | |
- name: Check formatting | |
run: ./gradlew ktlintCheck | |
- name: Run Tests | |
run: ./gradlew testDebugUnitTest | |
- name: Check Coverage | |
run: ./gradlew koverVerifyDebug |