aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: dad26b7aa7e1a6c42e32153147dd804735d28b63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# GitHub Action to Set up Mill

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
- name: Compile
  run: mill project.compile
# the server process is kept alive across steps,
# so separate invocations of mill remain extremely fast!
- name: Test
  run: mill project.test
```