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
2 changes: 2 additions & 0 deletions .github/workflows/build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
branches:
- master
- main
workflow_dispatch: # make manually launchable (on demand)

jobs:
build:
runs-on: ${{ matrix.os }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish_node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ permissions:
jobs:
publish-node:
name: Publish Custom Node to registry
if: github.repository_owner == 'StableLlama' # prevent unwanted runs on forks
runs-on: ubuntu-latest
steps:
- name: ♻️ Check out code
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- master
- main
workflow_dispatch: # make manually launchable (on demand)

jobs:
validate:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ dependencies = []
dev = [
"bump-my-version",
"coverage", # testing
"frozendict", # an example not-a-dict-but-mapping class for dict nodes
"mypy", # linting
"pre-commit", # runs linting on commit
"pytest", # testing
Expand Down
Loading
Loading