Merge pull request #7 from chat-apropo/query-params-config #36
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: G4F API | |
on: [push] | |
jobs: | |
build: | |
name: Test and Lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install dependencies | |
run: pip install -r requirements-dev.txt | |
- name: Run tests | |
run: python -m pytest tests/ | |
- name: Lint with Ruff | |
run: ruff --output-format=github . | |
continue-on-error: true | |
deploy-fly: | |
name: Deploy prod app to https://g4f-api.fly.dev/ | |
# Only from main branch | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: superfly/flyctl-actions/setup-flyctl@master | |
- run: flyctl deploy --remote-only | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
deploy-caprover: | |
# Always deploy | |
name: Deploy dev app to https://g4f-api.cloud.mattf.one/ | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Deploy App to CapRover | |
run: | | |
npm install -g caprover | |
caprover deploy \ | |
--caproverUrl '${{ secrets.CAPROVER_SERVER }}' \ | |
--appToken '${{ secrets.APP_TOKEN }}' \ | |
--appName '${{ secrets.APP_NAME }}' \ | |
-b '${{ github.head_ref || github.ref_name }} ' |