Skip to content

replace diagram with table for inter-service communication (#183) #968

replace diagram with table for inter-service communication (#183)

replace diagram with table for inter-service communication (#183) #968

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches: [next, qa, main]
jobs:
linux:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
- name: Setup libmamba solver
run: |
conda install -n base conda-libmamba-solver
conda config --set solver libmamba
- name: Install requirements
run: |
# --quiet should turn off progress bars to make logs more readable
conda env create --file conda_environment.yml --quiet
conda activate webmon
conda env update --file conda_development.yml --quiet
- name: Test with pytest
run: |
conda activate webmon
export DJANGO_SETTINGS_MODULE='reporting.reporting_app.settings.unittest'
python -m pytest --cov --cov-report=xml --cov-report=term src
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build documentation
run: |
conda activate webmon
cd docs && make html