Skip to content

add option that the worklow only track changes in dev branch #27

add option that the worklow only track changes in dev branch

add option that the worklow only track changes in dev branch #27

name: Pytest
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Run tests
run: pytest