Initialize Workflow #2
Workflow file for this run
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: FastAPI CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
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.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
- name: Install code formatter | |
run: | | |
python -m pip install black | |
- name: Run code formatter | |
run: | | |
black --check . | |
- 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 myworld/lib/python*/site-packages)" |