Merge pull request #841 from Webperf-se/dependabot/pip/pillow-11.1.0 #1742
This file contains 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: "Regression Test - Verify Translation(s)" | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- '**software-full.json' | |
- '**software-sources.json' | |
- '**update-software.yml' | |
- '**update_software_helper.py' | |
- '**software-rules.json' | |
- 'Dockerfile' | |
- '**regression-test-404.yml' | |
- '**regression-test-a11y-statement.yml' | |
- '**regression-test-css.yml' | |
- '**regression-test-docker-image.yml' | |
- '**regression-test-email.yml' | |
- '**regression-test-google-lighthouse-based.yml' | |
- '**regression-test-html.yml' | |
- '**regression-test-http.yml' | |
- '**regression-test-lint-css.yml' | |
- '**regression-test-pa11y.yml' | |
- '**regression-test-sitespeed-browsertime-har.yml' | |
- '**regression-test-sitespeed.yml' | |
- '**regression-test-software.yml' | |
- '**regression-test-standard-files.yml' | |
- '**regression-test-tracking.yml' | |
- '**regression-test-translations.yml' | |
- '**regression-test-webbkoll.yml' | |
- '**regression-test-ylt.yml' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest] | |
#os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified | |
- name: Setup dependencies using pip | |
run: pip install -r requirements.txt | |
- if: ${{ matrix.os == 'ubuntu-latest' }} | |
name: Verifing Translation(s) - LINUX | |
run: python default.py --update-translations | |
- if: ${{ matrix.os == 'windows-latest' }} | |
name: Verifing Translation(s) - WINDOWS | |
run: python default.py --update-translations | |
- if: ${{ matrix.os == 'windows-latest' }} | |
name: Git Add any changes to Translation(s) - WINDOWS | |
run: | | |
git config --global user.name 'GitHub Action' | |
git config --global user.email '[email protected]' | |
git add locales/ | |
git commit -m "Added changed Translation(s)" | |
git push |