helium/ui: add MRU tab cycling popup behind experimental flag #3048
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check patch series correctness | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - run: python3 ./devutils/lint.py | |
| i18n: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Regenerate source strings and check for drift | |
| run: | | |
| python3 ./devutils/i18n.py generate -o /tmp/source.gen.json | |
| diff -u ./i18n/source.gen.json /tmp/source.gen.json || { | |
| echo "::error::i18n/source.gen.json is out of date. Run: python3 devutils/i18n.py generate" | |
| exit 1 | |
| } | |
| - name: Validate translation files | |
| run: python3 ./devutils/i18n_lint.py |