Skip to content

Show you're refreshing when refreshing the screen #96

Show you're refreshing when refreshing the screen

Show you're refreshing when refreshing the screen #96

Workflow file for this run

name: Android CI
on:
pull_request :
branches : [ main, develop ]
push :
branches : [ main, develop ]
jobs:
test-feature:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Run Unit Tests
run: ./gradlew testDebugUnitTest
- name: Lint
run: ./gradlew lintDebug