Skip to content

Commit

Permalink
chore: add Task to the project
Browse files Browse the repository at this point in the history
Task is great. Let's use it in this project too!
  • Loading branch information
mcapell committed Nov 4, 2024
1 parent b0239be commit e9de152
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Monkey programming language

Monkey interpreter based on the book "Writing an interpreter in Go" by Thorsten Ball.

## Development

This project uses [Task](https://taskfile.dev/) as a task runner.

Run tests:

task go:test
6 changes: 6 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: '3'

tasks:
go:test:
cmds:
- go test -v -coverprofile coverage.out ./...

0 comments on commit e9de152

Please sign in to comment.