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:
|
2023-07-10 06:11:51 +00:00
|
|
|
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'
|
2022-12-29 23:44:53 +00:00
|
|
|
- '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:
|
2023-10-19 19:26:57 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-09 14:21:53 +00:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2023-12-06 16:07:07 +00:00
|
|
|
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: |
|
2023-07-10 06:11:51 +00:00
|
|
|
pipx install hatch
|
|
|
|
hatch run locales
|
2021-02-09 14:21:53 +00:00
|
|
|
|
|
|
|
- name: Test with pytest
|
2023-07-10 06:11:51 +00:00
|
|
|
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:
|
2023-10-19 19:26:57 +00:00
|
|
|
- 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 .
|