Skip to content

Commit

Permalink
[bot] synced local '.github/workflows/cljdoc_test.yml' with remote 's…
Browse files Browse the repository at this point in the history
…ources/github-actions/workflows/cljdoc_test.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast
  • Loading branch information
WallBrewBot committed Jan 5, 2025
1 parent b7bce53 commit 1a2e0c5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/cljdoc_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ jobs:

runs-on: ubuntu-latest
steps:
- name: Echo Trigger
id: echo-trigger
run: echo "Job triggered by ${{ github.event_name }}"

- name: Echo Runner OS
id: echo-runner-os
run: echo "Job running on ${{ runner.os }} server"

- name: Echo Git Ref
id: echo-git-ref
run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository"

- name: Checkout Repository
id: checkout
uses: actions/checkout@v4.2.2
Expand Down Expand Up @@ -44,6 +56,10 @@ jobs:
restore-keys: |
${{ runner.os }}-clj
- name: Install Clojure Dependencies
id: install-deps
run: lein deps

- name: Echo Leiningen Version
id: lein-version
run: lein -v
Expand All @@ -56,5 +72,9 @@ jobs:
id: cljdoc-check
uses: cljdoc/cljdoc-check-action@v0.0.3

- name: Echo Status
id: echo-status
run: echo "Job status is ${{ job.status }}."

# 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

0 comments on commit 1a2e0c5

Please sign in to comment.