Merge pull request #55 from putianyi889/patch-40 #29
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: Back-end Test | |
on: | |
push: | |
branches: | |
- main # Adjust the branch name as needed | |
pull_request: | |
jobs: | |
check_flag: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' # Choose the Python version you want to use | |
- name: Run Test | |
run: python -m unittest back_end/saolei/tests.py -v |