Skip to content

Commit

Permalink
Add simple build task
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Jul 28, 2023
1 parent 3dc724d commit 8250756
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,17 @@ args = [
command = 'mkdir'
args = ['-p', 'dist']

[tasks.build]
dependencies = ['prepare-build']
command = 'go'
args = [
'build',
'-v',
'-o',
'dist',
'./...',
]

[tasks.test-race]
dependencies = ['prepare-build']
command = 'go'
Expand Down

0 comments on commit 8250756

Please sign in to comment.