Skip to content

Merge pull request #79 from GuilFe/patch-3 #345

Merge pull request #79 from GuilFe/patch-3

Merge pull request #79 from GuilFe/patch-3 #345

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