revert: allow pulling translations by module name rather than repo name #1150
Workflow file for this run
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
# Validate the po files to ensure translation files are compilable. | |
name: Validate translation PO files | |
on: | |
pull_request: | |
jobs: | |
validate-po-files: | |
runs-on: ubuntu-latest | |
steps: | |
# Clones the openedx-translations repo | |
- name: clone openedx/openedx-translations | |
uses: actions/checkout@v3 | |
- name: Install gettext | |
run: | | |
sudo apt install -y gettext | |
- name: Validate translation files | |
id: validate_translation_files | |
run: | | |
make validate_translation_files |