Skip to content

Commit

Permalink
Initial commit - by Dennis
Browse files Browse the repository at this point in the history
  • Loading branch information
Lundez committed Mar 15, 2020
1 parent e82454b commit be75cee
Show file tree
Hide file tree
Showing 174 changed files with 1,810 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

# Trigger the workflow on push or pull request
on: pull_request

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Download Dependencies
run: ./gradlew dependencies

- name: Check Dependency Versions
run: ./gradlew dependencyUpdates

#- name: Check Kotlin Formatting
# run: ./gradlew ktlintCheck --continue

- name: Run Tests
run: ./gradlew test

- name: Build & Test Project
run: ./gradlew assemble --continue
38 changes: 38 additions & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

name: Create Release

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- First Change
- Second Change
draft: false
prerelease: false
#- name: Upload Release Asset
# id: upload-release-asset
# uses: actions/upload-release-asset@v1.0.1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
# asset_path: ./my-artifact.zip
# asset_name: my-artifact.zip
# asset_content_type: application/zip
17 changes: 17 additions & 0 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Check Dependency Versions

on:
schedule:
- cron: '0 8 1 * *'

jobs:
build:
name: Check dependencies
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v1

- name: Check Dependency Versions
run: ./gradlew dependencyUpdates
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release & Publish Build

on:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Clean Build
run: ./gradlew clean build

- name: Publish Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew publish
Binary file not shown.
Binary file not shown.
Binary file added .gradle/5.2.1/fileChanges/last-build.bin
Binary file not shown.
Binary file added .gradle/5.2.1/fileContent/fileContent.lock
Binary file not shown.
Binary file added .gradle/5.2.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file added .gradle/5.2.1/fileHashes/fileHashes.lock
Binary file not shown.
Empty file added .gradle/5.2.1/gc.properties
Empty file.
Binary file added .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 2 additions & 0 deletions .gradle/buildOutputCleanup/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Sun Mar 15 11:55:35 CET 2020
gradle.version=5.2.1
Binary file added .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Empty file added .gradle/vcs-1/gc.properties
Empty file.
10 changes: 10 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/gradle.xml

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

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

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

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

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

124 changes: 124 additions & 0 deletions .idea/uiDesigner.xml

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

Loading

0 comments on commit be75cee

Please sign in to comment.