Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ops: fix runner test #44

Merged
merged 2 commits into from
Jul 17, 2024
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: 4 additions & 2 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Testing and distribution
on:
push:
branches:
- dev
- main
pull_request:
workflow_dispatch:

Expand All @@ -17,12 +20,11 @@ jobs:
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: "3.9"

- id: pre-commit
name: Pre-commit
uses: pre-commit/[email protected]

# test-python:
# strategy:
# matrix:
Expand Down
5 changes: 5 additions & 0 deletions clean/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import clean.ca as ca
from clean import utils
from clean.runner import Runner

__all__ = ("Runner", "utils", "ca")