-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
256 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,19 @@ jobs: | |
ref: ${{ github.head_ref }} | ||
token: ${{ secrets.WALL_BREW_BOT_PAT }} | ||
|
||
- name: Cache maven dependencies | ||
uses: actions/cache@v3 | ||
env: | ||
cache-name: cache-maven | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-clj-${{ hashFiles('**/project.clj') }} | ||
restore-keys: | | ||
${{ runner.os }}-clj | ||
- name: Install Clojure dependencies | ||
run: lein deps | ||
|
||
- name: Install cljstyle | ||
uses: just-sultanov/setup-cljstyle@v1 | ||
with: | ||
|
@@ -22,6 +35,14 @@ jobs: | |
run: | | ||
cljstyle fix --report --report-timing --verbose | ||
- name: Sort Namespaces | ||
run: | | ||
lein ns-sort | ||
- name: Render Changelog | ||
run: | | ||
lein sealog render | ||
- name: Commit changes | ||
uses: stefanzweifel/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters