Skip to content

Commit d5a0841

Browse files
committed
Merge branch 'develop'
2 parents 09ff6d6 + b360a1c commit d5a0841

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1755
-9
lines changed

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[*.{kt,kts}]
2+
disabled_rules=no-wildcard-imports

.github/workflows/publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish to Bintray
2+
3+
on:
4+
release:
5+
types: [ published ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@main
12+
- uses: actions/setup-java@v1
13+
with:
14+
java-version: 14
15+
- name: Change wrapper permissions
16+
run: chmod +x ./gradlew
17+
- name: Publish with Gradle
18+
run: BINTRAY_USER=${{ secrets.BINTRAY_USER }} BINTRAY_API_KEY=${{ secrets.BINTRAY_API_KEY }} ./gradlew publish

.gitignore

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@
3333
# When using Gradle or Maven with auto-import, you should exclude module files,
3434
# since they will be recreated, and may cause churn. Uncomment if using
3535
# auto-import.
36-
# .idea/artifacts
37-
# .idea/compiler.xml
38-
# .idea/jarRepositories.xml
39-
# .idea/modules.xml
40-
# .idea/*.iml
41-
# .idea/modules
42-
# *.iml
43-
# *.ipr
36+
.idea/artifacts
37+
.idea/compiler.xml
38+
.idea/jarRepositories.xml
39+
.idea/modules.xml
40+
.idea/*.iml
41+
.idea/modules
42+
*.iml
43+
*.ipr
4444

4545
# CMake
4646
cmake-build-*/
@@ -150,3 +150,5 @@ gradle-app.setting
150150
**/build/
151151

152152
# End of https://www.toptal.com/developers/gitignore/api/kotlin,gradle,intellij
153+
154+
local.properties

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/cyk_algorithm_js_0_1_0.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/cyk_algorithm_js_1_0_SNAPSHOT.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/cyk_algorithm_jvm_0_1_0.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/cyk_algorithm_jvm_1_0_SNAPSHOT.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)