mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-15 15:15:06 -05:00
24 lines
386 B
YAML
24 lines
386 B
YAML
name: PEP8
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 0' # weekly
|
|
|
|
env:
|
|
JOBS: 2
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check Out
|
|
uses: actions/checkout@v2
|
|
- name: PEP8
|
|
run: |
|
|
pip install --upgrade pyproject-flake8
|
|
flake8 generate_data.py
|
|
flake8 verify_curves.py
|