Skip to content

Update pt-br prmessages.utxt, pr.utxt, prtips.utxt and z_bf2.utxt (I swear, this is the last one for now) #346

Update pt-br prmessages.utxt, pr.utxt, prtips.utxt and z_bf2.utxt (I swear, this is the last one for now)

Update pt-br prmessages.utxt, pr.utxt, prtips.utxt and z_bf2.utxt (I swear, this is the last one for now) #346

Workflow file for this run

# This workflow automatically checks the structure of the localization files
# to ensure they're all good
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: windows-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
# Runs the validator executable, if everything is OK the OR statment
# does not evaluate the right expression, otherwise it does and the build has an error
- name: Checking localization file's structure
shell: cmd
run: |
call check-localization.exe -noPause
IF %ERRORLEVEL% EQU -1 exit /b 1