Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
simpler Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
jjba23 committed Oct 11, 2024
1 parent d70de09 commit 02a2ebf
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
clean:
rm -rf .bloop .metals project/target project/project target zzspec/target
GITHUB_TOKEN="" sbt "bloopInstall"
sbt "bloopInstall"
validate:
GITHUB_TOKEN="" sbt "scalafixAll; scalafmt; test"
sbt "scalafixAll; scalafmt; test"
fmt:
GITHUB_TOKEN="" sbt "scalafixAll; scalafmt"
sbt "scalafixAll; scalafmt"
test:
GITHUB_TOKEN="" sbt "test"
sbt "test"
release:
# this requires the correct GPG key to be present in your system
sbt "publishSigned"
sbt "sonatypeBundleRelease"

0 comments on commit 02a2ebf

Please sign in to comment.