Skip to content

Commit

Permalink
Merge pull request #16 from onflow/cf/makefile
Browse files Browse the repository at this point in the history
Add makefile
  • Loading branch information
bthaile authored Oct 3, 2023
2 parents 529a75e + 5185ac0 commit b78b24a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.PHONY: test tidy

tidy:
@echo "Tidying up module..."
go mod tidy

test:
@echo "Running tests..."
go test ./...

0 comments on commit b78b24a

Please sign in to comment.