Moved the demo prompt, resources and tools into their own project, to… #19
This file contains hidden or 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: CljDoc | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| check-cljdoc: | |
| name: Check source code | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Clojure | |
| uses: DeLaGuardo/setup-clojure@master | |
| with: | |
| cli: latest | |
| - name: Build the jar and update pom.xml's version | |
| run: clojure -X:jar && mkdir target && mv *.jar target/ | |
| - name: CljDoc Check | |
| uses: cljdoc/[email protected] |