Add a command line argument to specify the base uri #59
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: Lint Clojure | |
on: [pull_request] | |
jobs: | |
clj-kondo: | |
name: runner / clj-kondo | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: clj-kondo | |
uses: nnichols/clojure-lint-action@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review # Change reporter. | |
level: warning |