Bump google-translate-api-x from 10.6.8 to 10.7.1 #28
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
--- | |
name: Test source | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
paths: | |
- .github/workflows/test-source.yml | |
- dist/** | |
- src/** | |
- action.yml | |
push: | |
branches: | |
- main | |
defaults: | |
run: | |
shell: sh | |
jobs: | |
test-source: | |
name: Source as ${{ matrix.source }} | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
env: | |
TEXT: "Love" | |
EXPECTED: "Любов" | |
strategy: | |
matrix: | |
source: ["file", "text"] | |
steps: | |
- name: Checkout ${{ github.repository }} | |
uses: actions/checkout@v4 | |
- name: Prepare source | |
id: params | |
run: | | |
if [ "${{ matrix.source }}" = "file" ]; then | |
source="source.txt" | |
echo "${TEXT}" > "${source}" | |
else | |
source="${TEXT}" | |
fi | |
echo "source=${source}" >> "$GITHUB_OUTPUT" | |
- name: Translate | |
uses: ./ | |
id: translate | |
with: | |
provider: "deepl" | |
lang: "en-uk" | |
source: "${{ steps.params.outputs.source }}" | |
api_key: "${{ secrets.DEEPL_API_KEY }}" | |
- name: Validate translated text | |
run: | | |
echo "'${TEXT}' has been translated to '${{ steps.translate.outputs.text }}'" | |
[ "${{ steps.translate.outputs.text }}" = "${EXPECTED}" ] || exit 1; |