Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mareksuchanek/hindent-ga-dist
Distribution of hindent for use with GitHub Actions
https://github.com/mareksuchanek/hindent-ga-dist
Last synced: about 2 months ago
JSON representation
Distribution of hindent for use with GitHub Actions
- Host: GitHub
- URL: https://github.com/mareksuchanek/hindent-ga-dist
- Owner: MarekSuchanek
- License: mit
- Created: 2021-09-12T06:11:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-12T07:09:32.000Z (over 3 years ago)
- Last Synced: 2024-10-19T07:37:40.369Z (3 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hindent builds for GitHub Actions
This repository is used to build and host [hindent](https://github.com/mihaimaruseac/hindent) for use within GitHub Actions
## Script for GitHub Actions
```sh
FILES=$(find myapp/src myapp/test myapp/app -name '*.hs')
RET=0
for FILE in $FILES; do
if ! hindent --validate $FILE; then
RET=1
fi
done
exit $RET
```## Contributing
Any forks and issues are highly appreciated.
## License
* This repository (GitHub workflow) is licensed under MIT [LICENSE](LICENSE)
* Distributed binaries stays under the original [LICENSE](HINDENT-LICENSE)