Skip to content

add tlp clear only for guests, add user agent #4

add tlp clear only for guests, add user agent

add tlp clear only for guests, add user agent #4

Workflow file for this run

name: Python Catalyst Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install pre-commit
- name: Run pre-commit hooks
run: |
pre-commit install
pre-commit run --all-files --hook-stage manual
- name: Run pytest
run: |
pytest .