Skip to content

Add trapping rain water solution using the two pointers approach #5

Add trapping rain water solution using the two pointers approach

Add trapping rain water solution using the two pointers approach #5

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"