[SE-6548] Do not create malformed Elasticsearch queries #15
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: push | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: deps | |
run: lein deps | |
- name: lint | |
run: lein clj-kondo --lint src test | |
- name: cljfmt | |
run: lein cljfmt check | |
- name: test | |
run: lein test | |
- name: snapshot | |
env: | |
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }} | |
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }} | |
run: lein deploy snapshots |