mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
27 lines
428 B
YAML
27 lines
428 B
YAML
name: Check locale
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- '*'
|
|
paths:
|
|
- 'data/locale/**'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'data/locale/**'
|
|
|
|
jobs:
|
|
ubuntu64:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Check locale files
|
|
run: |
|
|
python3 ./build-aux/CI/check-locale.py -p data/locale/
|