mirror of
https://github.com/aljazceru/dev-gpt.git
synced 2025-12-24 17:14:18 +01:00
34 lines
840 B
YAML
34 lines
840 B
YAML
name: CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
group: [1, 2]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
- name: Prepare environment
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install wheel
|
|
pip install --no-cache-dir ".[full,test]"
|
|
pip install pytest
|
|
pip install pytest-split
|
|
- name: Test
|
|
id: test
|
|
run: |
|
|
pytest -v -s -m "not gpu" --splits 9 --group ${{ matrix.group }} --splitting-algorithm least_duration test/
|
|
timeout-minutes: 20
|
|
env:
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|