Skip to content

ci: avoiding having to build tarball #19

ci: avoiding having to build tarball

ci: avoiding having to build tarball #19

Workflow file for this run

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:
- name: Install git to ensure deployment hash
run: sudo apt update; sudo apt-get install git
- uses: actions/checkout@v4
- name: Deploy App to CapRover
uses: caprover/deploy-from-github@v1.1.2
with:
server: '${{ secrets.CAPROVER_SERVER }}'
app: '${{ secrets.APP_NAME }}'
token: '${{ secrets.APP_TOKEN }}'
branch: ${{ github.head_ref || github.ref_name }}