mirror of
https://github.com/DeLaGuardo/setup-clojure.git
synced 2024-12-27 16:41:06 +08:00
Add readme and remove extra console log
This commit is contained in:
parent
3ac70b0d9e
commit
a8213eae6a
25
README.md
Normal file
25
README.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# setup-clojure
|
||||||
|
|
||||||
|
This action sets up clojure tools environment for using in GitHub Actions.
|
||||||
|
|
||||||
|
* clojure cli
|
||||||
|
* leiningen (not yet available)
|
||||||
|
* boot-clj (not yet available)
|
||||||
|
|
||||||
|
# Usage
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@latest
|
||||||
|
- uses: action/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: '9.0.4' // The JDK version to make available on the path. Required to run any clojure command line tools.
|
||||||
|
- uses: DeLaGuardo/setup-clojure@1.0
|
||||||
|
with:
|
||||||
|
tools-deps: '1.10.1.469'
|
||||||
|
- run: clojure -Sdescribe
|
||||||
|
```
|
||||||
|
|
||||||
|
# License
|
||||||
|
|
||||||
|
The scripts and documentation in this project are released under the [MIT License](LICENSE)
|
@ -122,7 +122,6 @@ async function readWriteAsync(
|
|||||||
|
|
||||||
fs.writeFile(file, newValue, 'utf-8', function(err) {
|
fs.writeFile(file, newValue, 'utf-8', function(err) {
|
||||||
if (err) throw err;
|
if (err) throw err;
|
||||||
console.log('filelistAsync complete');
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user