Skip to content

Add l10n-compare command-line tool #94

Add l10n-compare command-line tool

Add l10n-compare command-line tool #94

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install importlib_resources pytest
- run: pip install .
- run: pytest -vv
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -r dev-requirements.txt
- run: pip install -e .
- run: python -m flake8 .
- run: python -m mypy .
- run: python -m black --check .
- run: python -m isort --check .