Skip to content

Added func Reverse lexicographic comparison #23

Added func Reverse lexicographic comparison

Added func Reverse lexicographic comparison #23

Workflow file for this run

name: Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pytest
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run tests
run: |
python -m pytest -v