Skip to content

fix: [#15] Let action update the PR title (#48) #1

fix: [#15] Let action update the PR title (#48)

fix: [#15] Let action update the PR title (#48) #1

Workflow file for this run

name: python
'on': push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/setup-python@v5.0.0
with:
python-version: 3.9.18
cache: 'pip'
- name: Install PIP packages defined in requirements.txt
run: |
pip install -r requirements.txt
- name: Run tests
run: |
pytest --cov=main test.py --verbose --capture=no --cov-report term-missing