Skip to content

dodat je interfejs za testiranje i koriscenje #14

dodat je interfejs za testiranje i koriscenje

dodat je interfejs za testiranje i koriscenje #14

Workflow file for this run

name: Python Tests
on:
pull_request: {}
push: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run pytest
run: |
pip install pytest
pytest