Skip to content

added tika with input field data #3

added tika with input field data

added tika with input field data #3

Workflow file for this run

name: Lint
on:
pull_request:
paths:
- "**/*.py"
- "pyproject.toml"
- "poetry.lock"
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
# Cache Poetry dependencies
- name: Cache Poetry dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: poetry install
- name: Run linting checks
run: poetry run make check