-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (39 loc) · 1.23 KB
/
workflow.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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-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 }} '