mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-10-31 15:20:10 +00:00
5b7db9d849
# Conflicts: # .github/workflows/ci-build.yml # .github/workflows/commit-checker.yml # src/command.cpp # src/company_cmd.cpp # src/company_gui.cpp # src/crashlog.cpp # src/economy.cpp # src/lang/english.txt # src/lang/german.txt # src/lang/korean.txt # src/misc_gui.cpp # src/newgrf_config.cpp # src/openttd.cpp # src/settings_gui.cpp # src/ship_cmd.cpp # src/table/settings/gui_settings.ini
20 lines
315 B
YAML
20 lines
315 B
YAML
name: Unused strings
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
# pull_request:
|
|
|
|
jobs:
|
|
unused-strings:
|
|
name: Unused strings
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Check for unused strings
|
|
run: |
|
|
set -ex
|
|
python3 .github/unused-strings.py
|