mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-10-31 15:20:10 +00:00
19 lines
293 B
YAML
19 lines
293 B
YAML
name: Unused strings
|
|
|
|
on:
|
|
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
|