Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Jan 5, 2025
Merged
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
40 changes: 40 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,22 @@ jobs:
with:
ref: ${{ github.head_ref }}

- name: Setup Java
id: install-java
uses: actions/[email protected]
with:
distribution: 'adopt'
java-version: '21'
# This should match system.properties

- name: Install Leiningen
id: install-leiningen
uses: DeLaGuardo/[email protected]
with:
lein: 'latest'
clj-kondo: 'latest'
cljstyle: 'latest'

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

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

- name: Validate Sealog Entries
id: validate-changelog
run: lein sealog check
Expand All @@ -89,6 +109,22 @@ jobs:
with:
ref: ${{ github.head_ref }}

- name: Setup Java
id: install-java
uses: actions/[email protected]
with:
distribution: 'adopt'
java-version: '21'
# This should match system.properties

- name: Install Leiningen
id: install-leiningen
uses: DeLaGuardo/[email protected]
with:
lein: 'latest'
clj-kondo: 'latest'
cljstyle: 'latest'

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

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

- name: Validate Bouncer Rules
id: validate-bouncer
run: lein bouncer check
Expand Down
Loading