Skip to content

Commit

Permalink
switch from makefile to justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dougmasten committed Mar 13, 2024
1 parent 6bfb624 commit 44488d7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
15 changes: 0 additions & 15 deletions Makefile

This file was deleted.

19 changes: 19 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# just: https://github.com/casey/just

# list recipes
@_default:
just --list --unsorted

# sort README.md
@sort:
slmd README.md README.md.1 || [ $? -eq 1 ]
mv README.md.1 README.md

# install slmd
@slmd:
pipx install slmd

# check README.md URLs
@test:
docker run -ti --rm -v $$PWD:/mnt:ro dkhamsing/awesome_bot --allow-dupe --allow-redirect --skip-save-results ./README.md

0 comments on commit 44488d7

Please sign in to comment.