https://github.com/tkf/julia-code-style-suggesters
https://github.com/tkf/julia-code-style-suggesters
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tkf/julia-code-style-suggesters
- Owner: tkf
- License: mit
- Created: 2022-03-23T10:56:10.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-28T05:26:19.000Z (almost 4 years ago)
- Last Synced: 2025-04-14T06:49:49.599Z (9 months ago)
- Size: 4.88 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A setup for using JuliaFormatter, JuliaProjectFormatter, and reviewdog/action-suggester
## Notes
This Action exists mainly for a very selfish reason: simplifying managing workflows for my
projects. So, I don't think I can respond to feature requests and pull requests. If you
want to add some features, the best approach probably is to fork this repository or to
simply copy the steps in [`action.yml`](action.yml) into your workflow file.
(A secondary reason is to noting how to compose interesting Julia packages and GitHub
Actions.)
## Usage example
Create `.github/workflows/code-style.yml` with the following content:
```yaml
name: Code style
on:
pull_request:
jobs:
code-style:
runs-on: ubuntu-latest
steps:
- uses: tkf/julia-code-style-suggesters@v1
```
## Links
* https://github.com/domluna/JuliaFormatter.jl
* https://github.com/tkf/JuliaProjectFormatter.jl
* https://github.com/reviewdog/action-suggester