Skip to content

add web-app ref to readme #80

add web-app ref to readme

add web-app ref to readme #80

Workflow file for this run

name: ChatDoc CI
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda env update --file environment.yml --name base
- name: Lint with flake8
run: |
conda install flake8
# Lint using flake8 with settings from .flake8 file
flake8 --config .flake8
- name: Test with pytest
run: |
conda install pytest
pytest