Skip to content

Commit

Permalink
adss more unit tests that will probably fail
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmrichard committed Nov 11, 2024
1 parent b6d25f6 commit 89cf48e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_plugin_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
default: "new_plugin"
nwx_cmake:
required: false
type: bool
type: boolean
default: true
secrets:
CONTAINER_REPO_TOKEN:
Expand Down
18 changes: 17 additions & 1 deletion .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,23 @@ on:
jobs:
default_run:
uses: ./.github/workflows/build_plugin_template.yaml
secrets:
CONTAINER_REPO_TOKEN: ${{ secrets.CONTAINER_REPO_TOKEN }}
set_project_name:
uses: ./.github/workflows/build_plugin_template.yaml
with:
project_name: "NeW PluGIN" #Needs to result in default slug
secrets:
CONTAINER_REPO_TOKEN: ${{ secrets.CONTAINER_REPO_TOKEN }}
set_project_slug:
uses: ./.github/workflows/build_plugin_template.yaml
with:
project_slug: "my_super_awesome_plugin"
secrets:
CONTAINER_REPO_TOKEN: ${{ secrets.CONTAINER_REPO_TOKEN }}
no_nwx_cmake:
uses: ./.github/workflows/build_plugin_template.yaml
with:
project_name: "New Plugin"
nwx_cmake: false
secrets:
CONTAINER_REPO_TOKEN: ${{ secrets.CONTAINER_REPO_TOKEN }}

0 comments on commit 89cf48e

Please sign in to comment.