Skip to content

add solution isMonotonic python #18

add solution isMonotonic python

add solution isMonotonic python #18

Workflow file for this run

name: Run Tests
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: Run Jest tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run Jest tests
run: npm test -- --coverage --ci
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Run Python tests
run: python -m unittest discover -p '*_test.py'