mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-01-31 10:30:52 +00:00
- do not containerize the linter (for now) as all it does is a python3 check on translations.
18 lines
327 B
YAML
18 lines
327 B
YAML
name: linter
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
|
|
jobs:
|
|
translations:
|
|
name: Check Translations
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Lint translation files
|
|
run: python3 contrib/devtools/check-translations.py
|