mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-14 15:27:58 -05:00
17 lines
410 B
YAML
17 lines
410 B
YAML
name: Concrete Python Checks
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
Checks:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
- name: Install Platform Dependencies
|
|
run: |
|
|
sudo apt install -y graphviz libgraphviz-dev
|
|
- name: Pre-Commit Checks
|
|
run: |
|
|
./frontends/concrete-python/scripts/checks/checks.sh
|