Skip to content

Podnadpisi.NET

Podnadpisi.NET #1305

name: Podnadpisi.NET
on:
push:
branches:
- master
paths:
- '.github/workflows/cron-tests-podnadpisi.yml'
schedule:
- cron: '0 7 * * *'
workflow_dispatch: ~
jobs:
tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: setup-python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: install
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: test
run: |
pytest -v -k 'test_podnadpisi' ./tests/test_suite.py