Skip to content

Latest commit

History

History
18 lines (13 loc) 路 681 Bytes

CONTRIBUTING.md

File metadata and controls

18 lines (13 loc) 路 681 Bytes

Contributing

Do You want to help open source? Awesome! 鉂わ笍

Before submitting a Pull Request please

1. Run Unit Tests

Currently only unit tests are ran on GitHub actions (due to the fact that instrumented tests could fail when no data is present in app - correction needed). Two example ways to do this:

  1. just run (test) directory by clicking on it
  2. run in terminal: ./gradlew testDebugUnitTest (command example for MacOS)

2. Use ktlint to format code and match style

(command examples for MacOS)

  1. check formatting: ./gradlew ktlintCheck
  2. try to auto format files: ./gradlew ktlintCheck

Thanks!馃榾