Skip to content

chainlit && translations updated #50

chainlit && translations updated

chainlit && translations updated #50

Workflow file for this run

#
name: Test the module
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Disable Logger Outputs
run: |
sed -i "s/log_cli = true/log_cli = false/" pyproject.toml
- name: Set up python environment
uses: ./.github/actions/setup-python
- name: Install the Project with Test Dependencies
run: |
make install-test
- name: Test the Project
run: |
make test-all-parallel
# test_matrix:
# strategy:
# matrix:
# python-version: ['3.11', '3.12']
# os: [ubuntu-22.04] # windows-latest
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - name: Disable Logger Outputs
# run: |
# sed -i "s/log_cli = true/log_cli = false/" pyproject.toml
# - name: Set up python environment
# uses: ./.github/actions/setup-python
# - name: Install the Project with Test Dependencies
# run: |
# make install
# - name: Test the Project
# run: |
# make test-all-parallel
# # - name: Publish code coverage
# # uses: codecov/codecov-action@v3
#