Python 3.14 is the current stable version, released on October 7th. The dependencies we use also support Python 3.14 now, most importantly `fonttools` for which the OS-specific builds have been published (see the `cp314` wheels on https://pypi.org/project/fonttools/#files).
43 lines
950 B
YAML
43 lines
950 B
YAML
name: Lint Fluent Reference Files
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'l10n/en-US/**.ftl'
|
|
- '.github/fluent_linter_config.yml'
|
|
- '.github/workflows/fluent_linter.yml'
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
paths:
|
|
- 'l10n/en-US/**.ftl'
|
|
- '.github/fluent_linter_config.yml'
|
|
- '.github/workflows/fluent_linter.yml'
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Use Python 3.14
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.14'
|
|
cache: 'pip'
|
|
|
|
- name: Install Fluent dependencies
|
|
run: |
|
|
pip install -r .github/requirements.txt
|
|
|
|
- name: Lint Fluent reference files
|
|
run: |
|
|
moz-fluent-lint ./l10n/en-US --config .github/fluent_linter_config.yml
|