Skip to content

Code is very close to completion. Just need to add layout logic to add to syllabus. #130

Code is very close to completion. Just need to add layout logic to add to syllabus.

Code is very close to completion. Just need to add layout logic to add to syllabus. #130

Workflow file for this run

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