Skip to content

Adding more CI/CD tests and also fixing issue #1 #5

Adding more CI/CD tests and also fixing issue #1

Adding more CI/CD tests and also fixing issue #1 #5

Workflow file for this run

name: pytest
on:
pull_request:
branches:
- master
- dev
workflow_dispatch:
jobs:
pytests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
PYTHONPATH: ${{ github.workspace }}
steps:
- name: Check out pipeline code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: run the tests
run: pytest tests/