Skip to content

Commit

Permalink
(major/non-breaking?) Modules Refactor (#97, merge)
Browse files Browse the repository at this point in the history
(major/non-breaking?) Modules Refactor
  • Loading branch information
jcxldn authored Mar 29, 2021
2 parents 5d56a8a + 44baa18 commit c4d9c88
Show file tree
Hide file tree
Showing 154 changed files with 1,157 additions and 3,113 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,16 @@ jobs:
with:
name: java-${{matrix.version}}
path: build/libs/*
license-header-check:
- name: Publish to local testing maven repo
run: ./gradlew publishAllPublicationsToTestingRepository
- name: Display directory structure of testing repo
run: ls -R build/testing-mvn-repo
- name: Save output from testing repo
uses: actions/upload-artifact@v2
with:
name: java-${{matrix.version}}-testing-mvn-repo
path: build/testing-mvn-repo/*
linting-check:
runs-on: ubuntu-latest
container:
image: jcxldn/openjdk-alpine:11-jdk
Expand All @@ -39,8 +48,8 @@ jobs:
- uses: actions/checkout@v2
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run the license formatter checker
run: ./gradlew licenseMain licenseTest
- name: Test our code against our spotless formatting options
run: ./gradlew spotlessCheck
javadoc-check:
runs-on: ubuntu-latest
container:
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ bin
*.code-workspace

# Generated resources
src/main/resources/generated/*
common/src/main/resources/generated/*
6 changes: 4 additions & 2 deletions LICENSE_HEADER
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
Copyright (c) 2020-${year} DumbDogDiner <dumbdogdiner.com>. All rights reserved.
Licensed under the MIT license, see LICENSE for more information...
/*
* Copyright (c) 2020-$YEAR DumbDogDiner <dumbdogdiner.com>. All rights reserved.
* Licensed under the MIT license, see LICENSE for more information...
*/
Loading

0 comments on commit c4d9c88

Please sign in to comment.