(SERVER-3379): Updated ezbake build version to support debian-12-x86_64 build for puppetserver #368
Workflow file for this run
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
name: Clojure Linting | |
on: | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
paths: ['src/**','test/**','.clj-kondo/config.edn','project.clj','.github/**'] | |
jobs: | |
clojure-linting: | |
name: Clojure Linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: checkout repo | |
uses: actions/checkout@v2 | |
- name: install clj-kondo (this is quite fast) | |
run: | | |
curl -sLO https://raw.githubusercontent.com/clj-kondo/clj-kondo/master/script/install-clj-kondo | |
chmod +x install-clj-kondo | |
./install-clj-kondo --dir . | |
- name: kondo lint | |
run: ./clj-kondo --lint src test |