Skip to content

Commit

Permalink
Merge pull request #43 from uhooi/release/1.0.0
Browse files Browse the repository at this point in the history
Release/1.0.0
  • Loading branch information
uhooi authored Jun 1, 2020
2 parents d9bd44e + 39398b5 commit 66a40df
Show file tree
Hide file tree
Showing 70 changed files with 1,576 additions and 32 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: CI

on:
push:
branches:
- master
- develop
paths-ignore:
- docs/**
- README.md
- LICENSE
pull_request:
branches:
- develop
paths-ignore:
- docs/**
- README.md
- LICENSE

jobs:
test:
runs-on: ubuntu-latest
steps:
# チェックアウト
- uses: actions/checkout@v2

# JDKのセットアップ
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

# Gradleのキャッシュ復元
- uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
# 依存関係の出力
- name: Displays the Android dependencies of the project
run: ./gradlew androidDependencies

# コンパイル
- name: Run Compile
run: ./gradlew assembleDebug

# テスト
- name: Test with Gradle
run: ./gradlew test --stacktrace

lint:
runs-on: ubuntu-latest
steps:
# チェックアウト
- uses: actions/checkout@v2

# 静的解析
- name: Run Inspection
run: ./gradlew lint

detekt:
runs-on: ubuntu-latest
steps:
# チェックアウト
- uses: actions/checkout@v2

# 静的解析
- name: Lint with detekt
run: ./gradlew detekt
36 changes: 15 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@
# Compiled class file
*.class
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx

# Log file
*.log
*.keystore

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 124 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/dictionaries/kawaguchi_m.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 66a40df

Please sign in to comment.