Skip to content

Reimagine the UI with the "Nocturne" design language #21

Reimagine the UI with the "Nocturne" design language

Reimagine the UI with the "Nocturne" design language #21

Workflow file for this run

name: Android CI
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout Codebase
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Grant Execute Permission for Gradlew
run: chmod +x gradlew
- name: Run Unit Tests
run: ./gradlew testDebugUnitTest
- name: Compile Project
run: ./gradlew assembleDebug