Skip to content

Commit

Permalink
ltex workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dpo committed Nov 12, 2023
1 parent 17a7133 commit 7c8a23a
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ltex.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: ltex

on:
pull_request:
branches:
- master
- main

jobs:
build:
runs-on: macos-latest
steps:
- name: Checking out repository
uses: actions/checkout@v4
- name: Install ltex-ls
run: |
brew install openjdk@17 ltex-ls
sudo ln -sfn /usr/local/opt/openjdk@17/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-17.jdk
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
- name: Run ltex-ls
id: run-ltex-ls
run: |
PATH="/usr/local/opt/openjdk@17/bin:$PATH" ltex-cli --client-configuration=paper/ltex.json paper | tee ltex-cli.log
- name: Build comment
id: build-comment
uses: actions/github-script@v6
with:
github-token: ${{ github.token }}
result-encoding: string
script: |
const fs = require('fs');
return "<details>\n<summary>ltex output</summary>\n\n```\n" + fs.readFileSync("${{ github.workspace }}/ltex-cli.log", "utf8").toString() + "\n```\n</details>";
- name: Comment in PR
uses: thollander/actions-comment-pull-request@v2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
message: ${{ steps.build-comment.outputs.result }}
4 changes: 2 additions & 2 deletions paper/report.tex
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
\title{\papertitle}
\author{%
Author One\footnote{%
GERAD and Department of Mathematics and Industrial Engineering, Polytechnique Montr\'eal. E-mail: \href{mailto:geoffroy.leconte@polymtl.ca}{geoffroy.leconte@polymtl.ca}.
GERAD and Department of Mathematics and Industrial Engineering, Polytechnique Montréal. E-mail: \href{mailto:geoffroy.leconte@polymtl.ca}{geoffroy.leconte@polymtl.ca}.
}
\and
Dominique Orban\footnote{%
GERAD and Department of Mathematics and Industrial Engineering, Polytechnique Montr\'eal. E-mail: \href{mailto:dominique.orban@gerad.ca}{dominique.orban@gerad.ca}.
GERAD and Department of Mathematics and Industrial Engineering, Polytechnique Montréal. E-mail: \href{mailto:dominique.orban@gerad.ca}{dominique.orban@gerad.ca}.
}
\thanks{Research supported by an NSERC Discovery grant.}
}
Expand Down

0 comments on commit 7c8a23a

Please sign in to comment.