Skip to content

Reorganize imports in valid_palindrome.py #39

Reorganize imports in valid_palindrome.py

Reorganize imports in valid_palindrome.py #39

name: Python Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Run Unit Tests
run: python -m unittest discover -s . -p "*.py"