Show http-messages in output failing test-rio command #71
Workflow file for this run
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: Check deps for freshness | |
on: | |
schedule: | |
- cron: '0 1 1 * *' # every first of the month | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
deps: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache lein project dependencies | |
uses: actions/cache@v4 | |
with: | |
path: "~/.m2/repository" | |
key: "${{ runner.os }}-clojure-${{ hashFiles('**/project.clj') }}" | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check dependency freshness | |
run: lein check-deps |