Skip to content

chore: add num_comments_as_exitcode option #119

chore: add num_comments_as_exitcode option

chore: add num_comments_as_exitcode option #119

Workflow file for this run

name: tests
on:
push:
paths:
- '**.py'
pull_request:
paths:
- '**.py'
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install post/clang_tidy_review[tests]
- name: Test with pytest
run: "pytest -v"