Skip to content

Commit

Permalink
Fix linting jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
nnichols committed Jan 3, 2025
1 parent 5ace627 commit ae2b579
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions sources/github-actions/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/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 @@ -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/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 @@ -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

0 comments on commit ae2b579

Please sign in to comment.