mirror of
https://github.com/morgan9e/macos-stats
synced 2026-04-14 00:04:15 +09:00
21 lines
357 B
YAML
21 lines
357 B
YAML
name: i18n check
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/workflows/i18n.yaml'
|
|
- '**/*.strings'
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/i18n.yaml'
|
|
- '**/*.strings'
|
|
|
|
jobs:
|
|
i18n:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
- run: python3 Kit/scripts/i18n.py
|