Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jodersky/setup-mill

GitHub Action to set up mill
https://github.com/jodersky/setup-mill

action mill scala

Last synced: 26 days ago
JSON representation

GitHub Action to set up mill

Awesome Lists containing this project

README

        

# 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.10.4
- 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
```