Skip to content

Add time complexity analyses #121

Add time complexity analyses

Add time complexity analyses #121

Workflow file for this run

name: Python-Lint
on:
push:
paths:
- 'python/**'
- '!python/README.rst'
schedule:
- cron: "0 0 1 * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
python-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: 'pip'
cache-dependency-path: |
python/requirements.txt
c/requirements.txt
- name: Lint
run: make py_test LINT=true