Skip to content

Reworked on DialogflowConversation class #634

Reworked on DialogflowConversation class

Reworked on DialogflowConversation class #634

Workflow file for this run

name: Ruff
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Running Ruff Check
run: |
ruff check $(git ls-files '*.py')