Skip to content

Update translation files #55

Update translation files

Update translation files #55

Workflow file for this run

name: Check
on:
workflow_dispatch:
pull_request:
push:
branches:
- 'rel-**'
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/cache/restore@v5
id: cache-venv-restore
with:
path: .venv
key: ${{ runner.os }}-venv-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}
- if: steps.cache-venv-restore.outputs.cache-hit != 'true'
run: make venv
- if: steps.cache-venv-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v5
with:
path: .venv
key: ${{ steps.cache-venv-restore.outputs.cache-primary-key }}
- run: make check