Skip to content

fix property names not sorted error #25

fix property names not sorted error

fix property names not sorted error #25

# .github/workflows/python-self-hosted.yml
name: Python CI (Self-hosted)
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v2'
with:
install_components: 'cloud-datastore-emulator'
- name: 'Use gcloud CLI'
run: 'gcloud config set project python-datastore-sqlalchemy'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then
pip install -r requirements.txt
else
echo "No requirements.txt found"
fi
- name: Run tests
run: |
pytest