Skip to content

Enhancement: #40 included tests for interesting cases; #73

Enhancement: #40 included tests for interesting cases;

Enhancement: #40 included tests for interesting cases; #73

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pytest tests/test_comparator.py::TestComparator::test_comparator --maxfail=1 --disable-warnings -v