A fork of Simple Time Tracker with WearOS support. (Now integrated upstream)
0

Configure Feed

Select the types of activity you want to include in your feed.

setup ci

razeeman (Mar 28, 2021, 9:36 AM +0300) 8a6092cb ddba807b

+29
+29
.github/workflows/github_actions.yml
··· 1 + name: CI 2 + on: 3 + pull_request: 4 + branches: 5 + - 'dev' 6 + paths-ignore: 7 + - '**.md' 8 + push: 9 + branches: 10 + - 'dev' 11 + paths-ignore: 12 + - '**.md' 13 + jobs: 14 + test: 15 + runs-on: ubuntu-latest 16 + steps: 17 + - name: Check out source code 18 + uses: actions/checkout@v2 19 + 20 + - name: Setup Java 21 + uses: actions/setup-java@v1 22 + with: 23 + java-version: 1.8 24 + 25 + - name: Run style check 26 + run: ./gradlew ktlintCheck 27 + 28 + - name: Run tests 29 + run: ./gradlew testDebug