Skip to content

Commit

Permalink
Add scripts (#1138)
Browse files Browse the repository at this point in the history
* Add test build script

* Add test script

* Ignore test binary
  • Loading branch information
ErikSchierboom authored May 2, 2024
1 parent 31bf0dc commit 6bbd414
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ _testmain.go
out/
release/
go-exercism
testercism

# Intellij
/.idea
Expand Down
3 changes: 3 additions & 0 deletions bin/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

go build -o testercism ./exercism/main.go
3 changes: 3 additions & 0 deletions bin/format.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

go fmt ./...
3 changes: 3 additions & 0 deletions bin/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

go test ./...

0 comments on commit 6bbd414

Please sign in to comment.