Skip to content

Commit

Permalink
feat: works
Browse files Browse the repository at this point in the history
  • Loading branch information
distributedstatemachine committed Dec 31, 2024
1 parent 0590790 commit 05948d7
Show file tree
Hide file tree
Showing 42 changed files with 1,756 additions and 4,323 deletions.
19 changes: 0 additions & 19 deletions .env-template

This file was deleted.

9 changes: 0 additions & 9 deletions .env-template.yaml

This file was deleted.

15 changes: 1 addition & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,6 @@ jobs:
- name: Install dependencies
run: uv sync --extra all

- name: Create .env.yaml
run: |
echo "account_id: \"$ACCOUNT_ID\"" > .env.yaml
echo "read:" >> .env.yaml
echo " access_key_id: \"$READ_ACCESS_KEY_ID\"" >> .env.yaml
echo " secret_access_key: \"$READ_SECRET_ACCESS_KEY\"" >> .env.yaml
echo "write:" >> .env.yaml
echo " access_key_id: \"$WRITE_ACCESS_KEY_ID\"" >> .env.yaml
echo " secret_access_key: \"$WRITE_SECRET_ACCESS_KEY\"" >> .env.yaml
- name: Run Ruff Lint
uses: astral-sh/ruff-action@v1
with:
Expand All @@ -40,7 +30,4 @@ jobs:
- name: Run Ruff Format
uses: astral-sh/ruff-action@v1
with:
args: format --check

- name: Run Tests
run: uv run pytest
args: format --check
48 changes: 38 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,46 @@
# Python-generated files
.env.yaml
.env
*.pth

# Python
__pycache__/
*.py[oc]
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
wandb/
wandb/*
*.egg-info
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
.venv
# UV specific
.uv/
.venv/
venv/
.env/
uv.lock

.env.yaml
# Ruff sepcific
.ruff*

.env
# IDE
.idea/
.vscode/
*.swp
*.swo
.DS_Store

logs
# Project specific
wandb
*ipynb
Loading

0 comments on commit 05948d7

Please sign in to comment.