Add Postgres (#116) #49
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: Format and Lint | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Cache m2 repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/project.clj') }} | |
restore-keys: | | |
${{ runner.os }}-m2- | |
- name: Install clojure tools | |
uses: DeLaGuardo/[email protected] | |
with: | |
lein: 2.9.8 | |
clj-kondo: 2023.05.26 | |
cljfmt: 0.10.4 | |
- name: Format check for Cassandra | |
run: | | |
cd cassandra | |
cljfmt check | |
- name: Format check for ScalarDB | |
run: | | |
cd scalardb | |
cljfmt check | |
- name: Format check for ScalarDL | |
run: | | |
cd scalardl | |
cljfmt check | |
- name: Lint for Cassandra | |
run: clj-kondo --lint cassandra | |
- name: Lint for ScalarDB | |
run: clj-kondo --lint scalardb | |
- name: Lint for ScalarDL | |
run: clj-kondo --lint scalardl |