fix: Convert Asciidoc source blocks to gensql blocks for runnable exa… #615
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: linter | |
on: push | |
jobs: | |
lint-files: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup clj-kondo | |
uses: DeLaGuardo/setup-clj-kondo@master | |
with: | |
version: '2022.04.25' | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Cache clj-kondo cache | |
uses: actions/cache@v2 | |
with: | |
path: .clj-kondo/.cache | |
key: clj-kondo-cache-${{ hashFiles('deps.edn') }} | |
- name: Lint files | |
run: clj-kondo --lint src test --dependencies --config .clj-kondo/ci-config.edn |