Skip to content

Merge pull request #119 from Nerixyz/chore/exit-with-comments #121

Merge pull request #119 from Nerixyz/chore/exit-with-comments

Merge pull request #119 from Nerixyz/chore/exit-with-comments #121

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"