aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2019-09-22 22:49:58 -0400
committerJakob Odersky <jakob@odersky.com>2019-09-22 22:49:58 -0400
commit53e06d4e582a61eadab99cbe69cc6b6462ae4c85 (patch)
tree5996e5f9a5ffa59c1eceb1d6ca96cfdaff339038
parentacb9d36d77590fecdc7d3d5b294162cb9f48f0b8 (diff)
downloadsetup-mill-53e06d4e582a61eadab99cbe69cc6b6462ae4c85.tar.gz
setup-mill-53e06d4e582a61eadab99cbe69cc6b6462ae4c85.tar.bz2
setup-mill-53e06d4e582a61eadab99cbe69cc6b6462ae4c85.zip
Update readmev0.1.2
-rw-r--r--README.md12
1 files changed, 9 insertions, 3 deletions
diff --git a/README.md b/README.md
index 8045369..06b0b13 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,13 @@
Use this action to make [mill](http://www.lihaoyi.com/mill/) available in a job.
```yaml
-uses: jodersky/setup-mill@master
-with:
- mill-version: 0.5.1
+- uses: jodersky/setup-mill@master
+ with:
+ mill-version: 0.5.1
+- name: Compile
+ run: mill project.compile
+# the server process and is kept alive across steps,
+# so separate invocations of mill remain extremely fast!
+- name: Test
+ run: mill project.test
```