aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
```