Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
files: artifacts/tests/coverage/coverage.info
format: lcov

# reactivate later
# deptry:

#deptry:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout [${{ github.repository }}]
# uses: actions/checkout@v4
#

# - uses: cvxgrp/.github/actions/uv/deptry@v2.0.0
2 changes: 1 addition & 1 deletion cvx/cradle/templates/paper/.github/workflows/latex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
paper: paper1/main1.tex
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
draft: draft_main1
draft: draft

- uses: cvxgrp/.github/actions/latex@v2.0.1
with:
Expand Down
9 changes: 2 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
[project]
name = "cvxcli"
name = "cradle"
version = "0.0.0"
description = "Simple command line app demo"
description = "CLI to create repos"
readme = "README.md"
authors = [{name = "Thomas Schmelzer", email = "thomas.schmelzer@gmail.com"}]
requires-python = ">=3.10"
dependencies = [
"fire>=0.7.0",
"copier>=9.3.1",
"questionary>=2.0.1",
"loguru>=0.7.2",
"pygithub",
#typing_extensions = "*"
#pydantic_core = "*"
#annotated_types = "*"
"GitPython>=0.0.0"
]

Expand Down
14 changes: 14 additions & 0 deletions taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,17 @@ version: '3'
includes:
cradle:
taskfile: https://github.com/cvxgrp/.github.git//tasks/setup.yml?ref=main

tasks:
verify:
desc: Verify GitHub SSH connection
cmds:
- |
if ssh -T git@github.com 2>&1 | grep -q "successfully authenticated"; then
echo "✓ GitHub SSH connection verified"
exit 0
else
echo "✗ GitHub SSH connection failed"
exit 1
fi
silent: true
Loading
Loading