chore(deps): lock file maintenance #251
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
# Verifies that the project is compatible with cljdoc, and that our documentation will render correctly. | |
name: Check cljdoc compatibility | |
on: ["pull_request", "workflow_dispatch"] | |
jobs: | |
check-cljdoc: | |
# Cancel any runs in progress for the same workflow and PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
id: checkout | |
uses: actions/[email protected] | |
- name: Cache Maven Dependencies | |
id: cache-maven | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-maven | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-clj-${{ hashFiles('**/project.clj') }} | |
restore-keys: | | |
${{ runner.os }}-clj | |
- name: Package The Library As A Jar | |
id: package | |
run: lein jar | |
- name: cljdoc Check | |
id: cljdoc-check | |
uses: cljdoc/[email protected] | |
# This file was automatically copied and populated by rebroadcast | |
# Do not edit this file directly, instead modify the source at https://github.com/Wall-Brew-Co/rebroadcast/blob/master/sources/github-actions/workflows/cljdoc_test.yml |