Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jodersky/setup-mill
- Owner: jodersky
- License: mit
- Created: 2019-09-23T00:27:40.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T01:23:04.000Z (over 1 year ago)
- Last Synced: 2024-09-28T11:23:45.462Z (about 1 month ago)
- Topics: action, mill, scala
- Language: JavaScript
- Homepage:
- Size: 423 KB
- Stars: 18
- Watchers: 4
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```