Point to new docker repo from #4 #35
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: CI | |
on: | |
push: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Set up Clojure | |
uses: DeLaGuardo/setup-clojure@master | |
with: | |
cli: 1.11.1.1237 | |
- name: Run clj-kondo lint | |
run: clojure -M:clj-kondo --lint src | |
- name: Check outdated dependencies | |
uses: liquidz/antq-action@main | |
with: | |
excludes: 'clojure/brew-install' |