feat: new response #12
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: Flask CI | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
- name: Create virtual environment | |
run: | | |
python -m venv venv | |
source venv/bin/activate | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
- name: Print debugging information | |
run: | | |
echo "Python Version: $(python --version)" | |
echo "Working Directory: $(pwd)" | |
echo "Contents of Working Directory: $(ls -l)" | |
echo "Contents of site-packages: $(ls -l venv/lib/python*/site-packages)" | |
- name: Run tests | |
run: python test.py |