Skip to content

Add comprehensive tests for array, set, string, and dictionary operat… #21

Add comprehensive tests for array, set, string, and dictionary operat…

Add comprehensive tests for array, set, string, and dictionary operat… #21

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Run Python Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run test suite
run: |
python run_tests.py