2021-08-12 20:45:50 +03:00
|
|
|
name: CI - File health
|
2020-10-26 19:31:25 +03:00
|
|
|
|
2021-02-04 11:15:31 +03:00
|
|
|
on: [pull_request, push]
|
2020-10-26 19:31:25 +03:00
|
|
|
|
2023-02-16 11:16:54 +03:00
|
|
|
permissions: {}
|
|
|
|
|
2022-02-25 08:34:28 +03:00
|
|
|
concurrency:
|
2022-03-02 08:26:13 +03:00
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
2022-02-25 08:34:28 +03:00
|
|
|
cancel-in-progress: ${{ github.head_ref != '' }}
|
|
|
|
|
2020-10-26 19:31:25 +03:00
|
|
|
jobs:
|
2021-08-19 06:21:34 +03:00
|
|
|
ci:
|
|
|
|
name: Check
|
2021-08-12 20:55:43 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-10-26 19:31:25 +03:00
|
|
|
steps:
|
2021-08-14 09:54:15 +03:00
|
|
|
- name: Checkout repository
|
2023-09-05 14:42:07 +03:00
|
|
|
uses: actions/checkout@v4
|
2020-10-26 19:31:25 +03:00
|
|
|
|
2021-08-14 09:56:37 +03:00
|
|
|
- name: Install tools
|
2024-01-02 11:23:09 +03:00
|
|
|
uses: actions/setup-python@v5
|
2022-08-19 07:59:13 +03:00
|
|
|
with:
|
|
|
|
python-version: "*"
|
2020-10-26 19:31:25 +03:00
|
|
|
|
2021-08-19 06:21:34 +03:00
|
|
|
- name: Check files
|
2024-03-03 08:33:07 +03:00
|
|
|
uses: pre-commit/action@v3.0.1
|
2023-09-05 14:37:38 +03:00
|
|
|
|
|
|
|
- name: Check doc
|
|
|
|
env:
|
|
|
|
pandoc_path: "${{ github.workspace }}/../pandoc"
|
|
|
|
run: |
|
|
|
|
# install pandoc
|
|
|
|
curl \
|
|
|
|
-L \
|
|
|
|
-o "${{ runner.temp }}/pandoc.tar.gz" \
|
2024-10-06 11:41:38 +03:00
|
|
|
"https://github.com/jgm/pandoc/releases/download/3.4/pandoc-3.4-linux-amd64.tar.gz"
|
2023-09-05 14:37:38 +03:00
|
|
|
tar -xf "${{ runner.temp }}/pandoc.tar.gz" -C "${{ github.workspace }}/.."
|
|
|
|
mv "${{ github.workspace }}/.."/pandoc-* "${{ env.pandoc_path }}"
|
|
|
|
# run pandoc
|
|
|
|
for lang in doc/*/; do
|
|
|
|
"${{ env.pandoc_path }}/bin/pandoc" -f markdown -t man -s "$lang/qbittorrent.1.md" -o "$lang/qbittorrent.1"
|
|
|
|
"${{ env.pandoc_path }}/bin/pandoc" -f markdown -t man -s "$lang/qbittorrent-nox.1.md" -o "$lang/qbittorrent-nox.1"
|
|
|
|
done
|
|
|
|
# check diff, ignore "Automatically generated by ..." part
|
|
|
|
git diff -I '\.\\".*' --exit-code
|