Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

[bot] synced file(s) with Wall-Brew-Co/rebroadcast #136

Merged
merged 5 commits into from
Jan 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/cljdoc_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,22 @@ jobs:
id: checkout
uses: actions/checkout@v4.2.2

- name: Setup Java
id: install-java
uses: actions/setup-java@v4.6.0
with:
distribution: 'adopt'
java-version: '21'
# This should match system.properties

- name: Install Leiningen
id: install-leiningen
uses: DeLaGuardo/setup-clojure@13.1
with:
lein: 'latest'
clj-kondo: 'latest'
cljstyle: 'latest'

- name: Cache Maven Dependencies
id: cache-maven
uses: actions/cache@v4
Expand All @@ -28,6 +44,10 @@ jobs:
restore-keys: |
${{ runner.os }}-clj

- name: Echo Leiningen Version
id: lein-version
run: lein -v

- name: Package The Library As A Jar
id: package
run: lein jar
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@ jobs:
id: checkout
uses: actions/checkout@v4.2.2

- name: Setup Java
id: install-java
uses: actions/setup-java@v4.6.0
with:
distribution: 'adopt'
java-version: '21'
# This should match system.properties

- name: Install Leiningen
id: install-leiningen
uses: DeLaGuardo/setup-clojure@13.1
with:
lein: 'latest'
clj-kondo: 'latest'
cljstyle: 'latest'

- name: Cache Maven Dependencies
id: cache-maven
uses: actions/cache@v4
Expand All @@ -29,6 +45,10 @@ jobs:
restore-keys: |
${{ runner.os }}-clj

- name: Echo Leiningen Version
id: lein-version
run: lein -v

- name: Install Clojure Dependencies
id: install-deps
run: lein deps
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/deploy_to_clojars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@ jobs:
id: checkout
uses: actions/checkout@v4.2.2

- name: Setup Java
id: install-java
uses: actions/setup-java@v4.6.0
with:
distribution: 'adopt'
java-version: '21'
# This should match system.properties

- name: Install Leiningen
id: install-leiningen
uses: DeLaGuardo/setup-clojure@13.1
with:
lein: 'latest'
clj-kondo: 'latest'
cljstyle: 'latest'

- name: Cache Maven Dependencies
id: cache-maven
uses: actions/cache@v4
Expand All @@ -29,6 +45,10 @@ jobs:
restore-keys: |
${{ runner.os }}-clj

- name: Echo Leiningen Version
id: lein-version
run: lein -v

- name: Install Clojure Dependencies
id: install-deps
run: lein deps
Expand Down
18 changes: 14 additions & 4 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,21 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.WALL_BREW_BOT_PAT }}

- name: Install cljstyle
id: install-cljstyle
uses: just-sultanov/setup-cljstyle@v1
- name: Setup Java
id: install-java
uses: actions/setup-java@v4.6.0
with:
version: '0.14.0'
distribution: 'adopt'
java-version: '21'
# This should match system.properties

- name: Install Leiningen
id: install-leiningen
uses: DeLaGuardo/setup-clojure@13.1
with:
lein: 'latest'
clj-kondo: 'latest'
cljstyle: 'latest'

- name: Format Clojure Code
id: format
Expand Down
1 change: 1 addition & 0 deletions src/keg/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
[keg.impl :as impl]
[robert.hooke :as hook]))


;; Formatters
;;
;; Default formatters for common use cases are delineated below
Expand Down Expand Up @@ -42,7 +43,7 @@
:return-value return})


#_{:clj-kondo/ignore [:clojure-lsp/unused-public-var]}

Check warning on line 46 in src/keg/core.clj

View workflow job for this annotation

GitHub Actions / clj-kondo

[clj-kondo] reported by reviewdog 🐶 Redundant ignore Raw Output: ./src/keg/core.clj:46:3: Redundant ignore


(defn tap
Expand Down
Loading