New translations mobile-app-promo-nutriscore.html (Polish) #4598
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: Check Includes in HTML Templates | |
on: | |
push: | |
paths: | |
- '**.html' | |
pull_request: | |
paths: | |
- '**.html' | |
jobs: | |
check-includes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install Dependencies | |
run: pip install beautifulsoup4 | |
- name: Check for Translated Includes | |
run: python .github/scripts/check_includes.py |