File tree Expand file tree Collapse file tree 3 files changed +40
-3
lines changed Expand file tree Collapse file tree 3 files changed +40
-3
lines changed Original file line number Diff line number Diff line change 1818 uses : actions/checkout@v3.5.0
1919 - run : echo "🐙 ${{ github.repository }} repository was cloned to the runner."
2020
21- - name : " Version Checks"
22- uses : liquidz/antq-action@main
23-
2421 - name : " Install tools"
2522 uses : DeLaGuardo/setup-clojure@10.3
2623 with :
Original file line number Diff line number Diff line change 1+ ---
2+ # ------------------------------------------
3+ # Scheduled check of versions
4+ # - insight as to when to push version updates
5+ # to Practialli Clojure CLI Config
6+ #
7+ # Using liquidz/anta to check:
8+ # - GitHub workflows
9+ # - deps.edn
10+ # ------------------------------------------
11+
12+ name : " Scheduled Version Check"
13+ on :
14+ schedule :
15+ - cron : ' 0 4 * * *' # at 04:04:04 ever day
16+ workflow_dispatch : # Run manually via GitHub Actions Workflow page
17+
18+ jobs :
19+ scheduled-version-check :
20+ name : " Scheduled Version Check"
21+ runs-on : ubuntu-latest
22+ steps :
23+ - run : echo "🚀 Job automatically triggered by ${{ github.event_name }}"
24+ - run : echo "🐧 Job running on ${{ runner.os }} server"
25+ - run : echo "🐙 Using ${{ github.ref }} branch from ${{ github.repository }} repository"
26+
27+ - name : " Checkout code"
28+ uses : actions/checkout@v3.5.0
29+ - run : echo "🐙 ${{ github.repository }} repository was cloned to the runner."
30+
31+ - name : " Setup Antq"
32+ uses : liquidz/antq-action@main
33+
34+ - name : " Antq Check versions"
35+ run : antq --error-format="::error file={{file}}::{{message}}"
36+
37+ - run : echo "🎨 library versions checked with liquidz/antq"
38+
39+ - run : echo "🍏 Job status is ${{ job.status }}."
Original file line number Diff line number Diff line change 77*** nREPL support for `:repl/inspect`
88*** `project/templates` alias for use with deps-new, providing Practialli designed project templates
99*** `project/create-local` to support development of Practialli project templates
10+ *** ci: antq library versions scheduled GitHub workflow
1011** Changed
1112*** remove find-deps from `:repl/reloaded` and `:dev/reloaded` aliases to avoid reload clash with add-libs dependency
1213*** updated `project/create` to include Practialli designed project templates as a dependency
You can’t perform that action at this time.
0 commit comments