Updated packages #1748
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Keiko Check the LaTeX style using linters | |
on: | |
push: | |
branches: | |
- "main" | |
- "release-*" | |
tags: | |
- "*" | |
paths: | |
- keiko/** | |
pull_request: | |
paths: | |
- keiko/** | |
jobs: | |
check-latex: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install chktex | |
run: sudo apt-get install chktex | |
- name: Run checks | |
run: make check-latex | |
working-directory: ./keiko |