Moved addons into src/addons
and added VSCode settings and app launcher scripts
#82
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- main | |
- dev | |
- ci-testing | |
paths: | |
- 'send2ue/**/*' | |
- 'ue2rigify/**/*' | |
- 'tests/**/*' | |
- '.github/workflows/**' | |
permissions: | |
contents: read | |
checks: write | |
id-token: write | |
jobs: | |
test-lts: | |
name: Test LTS | |
uses: poly-hammer/BlenderTools/.github/workflows/re-use-tests.yml@restructure-addons-for-better-dev-setup | |
secrets: inherit | |
with: | |
title: Test LTS | |
unreal-version: 5.3 | |
blender-version: 3.6 | |
test-latest: | |
needs: test-lts | |
name: Test Latest | |
uses: poly-hammer/BlenderTools/.github/workflows/re-use-tests.yml@restructure-addons-for-better-dev-setup | |
secrets: inherit | |
with: | |
title: Test Latest | |
unreal-version: 5.3 | |
blender-version: 4.1 |