LibreTranslate/.github/workflows/run-tests.yml

50 lines
1.1 KiB
YAML
Raw Normal View History

2021-02-09 14:21:53 +00:00
name: Run tests
# Run test at each push to main, if changes to package or tests files
on:
workflow_dispatch:
workflow_call:
2022-04-02 19:02:17 +00:00
pull_request:
branches: [ main ]
2021-02-09 14:21:53 +00:00
push:
branches: [ main ]
paths:
2022-04-06 12:13:31 +00:00
- '*.py'
2021-02-09 14:21:53 +00:00
- 'requirements.txt'
- 'libretranslate/**'
2021-02-09 14:21:53 +00:00
- '.github/workflows/run-tests.yml'
jobs:
2022-04-06 12:10:41 +00:00
tests_python:
2021-02-09 14:21:53 +00:00
runs-on: ubuntu-latest
strategy:
matrix:
2023-01-12 13:44:46 +00:00
python-version: ['3.8', '3.9', '3.10']
2021-02-09 14:21:53 +00:00
steps:
- uses: actions/checkout@v4
2021-02-09 14:21:53 +00:00
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
2021-02-09 14:21:53 +00:00
with:
python-version: ${{ matrix.python-version }}
2021-02-09 14:25:05 +00:00
- name: Install dependencies
run: |
pipx install hatch
hatch run locales
2021-02-09 14:21:53 +00:00
- name: Test with pytest
run: hatch run test
2021-02-09 14:21:53 +00:00
2022-04-06 12:10:41 +00:00
test_docker_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2022-04-06 12:10:41 +00:00
- name: Docker build
2023-01-13 15:24:56 +00:00
run: docker build -f docker/Dockerfile -t libretranslate .
2022-04-06 12:21:41 +00:00
- name: Docker build with some models
2023-01-13 15:24:56 +00:00
run: docker build -f docker/Dockerfile -t libretranslate --build-arg models=en,es .