mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +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@v2
|
||
|
|
||
|
- name: Check for unused strings
|
||
|
run: |
|
||
|
set -ex
|
||
|
python3 .github/unused-strings.py
|