Fix(l10n): Update translations from Transifex #315
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
# This workflow is provided via the organization template repository | |
# | |
# https://github.com/nextcloud/.github | |
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | |
name: Lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- master | |
- stable* | |
jobs: | |
xml-linters: | |
runs-on: ubuntu-latest | |
name: info.xml lint | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download schema | |
run: wget https://raw.githubusercontent.com/nextcloud/server/master/resources/app-info-shipped.xsd | |
- name: Lint info.xml | |
uses: ChristophWurst/xmllint-action@v1 | |
with: | |
xml-file: ./appinfo/info.xml | |
xml-schema-file: ./app-info-shipped.xsd |