Skip to content

mh61503891/action-paper-aspell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Actions for spell-checking with Aspell

Usage

.github/main.workflow:

workflow "Spell Checking with Aspell" {
  on = "push"
  resolves = ["GitHub Action for Aspell"]
}

action "GitHub Action for Aspell" {
  uses = "mh61503891/action-paper-aspell@master"
  env = {
    ASPELL_LANG = "en"
    ASPELL_MODE = "tex"
    ASPELL_PERSONAL = "./.aspell.en.pws"
    ASPELL_FILES = "main.tex main.bib"
  }
}

Environment variables

NAME Default Value Aspell's option
ASPELL_LANG en --lang
ASPELL_MODE tex --mode
ASPELL_PERSONAL ./.aspell.${ASPELL_LANG}.pws --personal
ASPELL_FILES main.tex main.bib These files are streamed to aspell by cat.

License

This action is available as open source under the terms of the MIT License.

Author

Masayuki Higashino