Skip to content

Commit

Permalink
Add Github action to update clojure dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
RickMoynihan committed Jan 14, 2022
1 parent 966fc3b commit cd4b571
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Clojure Dependency Checking

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout Latest Commit
uses: actions/checkout@v1

- name: Check deps
uses: nnichols/clojure-dependency-update-action@v3
with:
directories: drafter drafter-client
github-token: ${{ secrets.github_token }}

0 comments on commit cd4b571

Please sign in to comment.