Skip to content

Break everything and introduce i18n #3

Break everything and introduce i18n

Break everything and introduce i18n #3

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
test-api:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: api/pyproject.toml
architecture: x64
- name: Install dependencies (and project)
working-directory: api
run: |
pip install -U pip
pip install -e .[test,scripts]
- name: Run the tests
working-directory: api
run: inv coverage --args "-vvv"
- name: Upload coverage report to codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
build_docker:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Ensure we can build the Docker image
run: |
docker build -t zimitfrontend .
- name: Ensure we can start the Docker image
run: |
docker run -d --rm --name test_container zimitfrontend
sleep 5
docker ps | grep test_container
docker stop test_container