Translations update from Hosted Weblate #61
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
# Checks whether the JSON files are broken | |
name: Validate leaderboards | |
# run this for everything, because changing rust code or JSON might break things | |
on: | |
push: | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Validate JSON files | |
uses: actions-rs/cargo@v1 | |
with: | |
command: run | |
args: --package validator |