-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 982 Bytes
/
python-integration.yml
File metadata and controls
42 lines (34 loc) · 982 Bytes
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
name: python-integration
on:
workflow_dispatch:
inputs:
cccc_ref:
description: "CCCC repo ref (branch/tag/sha) to test against"
required: true
default: "main"
jobs:
integration:
runs-on: ubuntu-latest
steps:
- name: Checkout cccc-sdk
uses: actions/checkout@v4
- name: Checkout cccc (daemon)
uses: actions/checkout@v4
with:
repository: ChesterRa/cccc
ref: ${{ inputs.cccc_ref }}
path: cccc
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install cccc + cccc-sdk (editable)
run: |
python -m pip install -U pip
python -m pip install -e cccc
python -m pip install -e python
- name: Smoke (daemon + sdk)
run: |
export CCCC_HOME="$PWD/.tmp_cccc_home"
cccc daemon start
python python/examples/compat_check.py
cccc daemon stop