Skip to content

Commit 204a44b

Browse files
committed
chore: Update project structure and add initial code
1 parent a27cd0d commit 204a44b

File tree

53 files changed

+1358
-6
lines changed

Some content is hidden

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

53 files changed

+1358
-6
lines changed

.github/FUNDING.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# These are supported funding model platforms
2+
3+
github: [gabriel-logan] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
12+
polar: # Replace with a single Polar username
13+
buy_me_a_coffee: gabriellogan
14+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/workflows/kotlin-pr-check.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Kotlin Pull Request Check
2+
# With maven
3+
4+
on:
5+
pull_request:
6+
branches:
7+
- main
8+
9+
workflow_dispatch:
10+
11+
jobs:
12+
checking-pr:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v2
17+
- name: Set up JDK 11
18+
uses: actions/setup-java@v2
19+
with:
20+
distribution: 'adopt'
21+
java-version: '11'
22+
- name: Build with Maven
23+
run: mvn -B package --file pom.xml
24+
- name: Run tests
25+
run: mvn test

.idea/sonarlint/issuestore/2/6/26a9a7c88872e994049900d0e758aea6deca4683

Whitespace-only changes.

.idea/sonarlint/issuestore/4/7/47099d604f5454a9f826c9bd7f6ad9311bbeb9b4

Whitespace-only changes.

.idea/sonarlint/issuestore/5/e/5e7ed05eb20df30a215289817543113eb0e8a750

Whitespace-only changes.

.idea/sonarlint/issuestore/7/e/7eb9a2b3314ef6c5ca43eccb6bc245d429b27d58

Whitespace-only changes.

.idea/sonarlint/issuestore/8/5/85cf9a1203932e1143b33e76ccceb93161ac03f0

Whitespace-only changes.

.idea/sonarlint/issuestore/b/9/b99ee3f4f26e65147657407346d01d34e468b2a3

Whitespace-only changes.

.idea/sonarlint/issuestore/c/f/cfc168c7e69bb8c84ff7d20fde0480e8a9cb85cb

Whitespace-only changes.

.idea/sonarlint/issuestore/d/6/d68bda52a2bca6a82fda6c0e6a14aa002c2b14d7

Whitespace-only changes.

0 commit comments

Comments
 (0)