chore: reindex math instruct data, from 0:20000 contain 'gender speci… #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 # Specify your desired Python version | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements.txt # Replace with the path to your requirements file | |
working-directory: ./ | |
- name: Run Unit Tests | |
run: | | |
python -m unittest discover -s tests -p "*_test.py" # Adjust this command based on your code structure | |
working-directory: ./ |