Skip to content

Commit

Permalink
Merge pull request #276 from nxt-dev/features/deployment_workflow
Browse files Browse the repository at this point in the history
Deployment Workflows
  • Loading branch information
ImLucasBrown authored Jun 9, 2024
2 parents fdac396 + 5c2956a commit 43fcbe4
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 32 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Release

on:
push:
branches: [release]
workflow_dispatch:
branches: [release]

jobs:
test-and-deploy:
secrets: inherit
uses: nxt-dev/nxt/.github/workflows/release.yml@release
with:
QT_DEPENDENCIES: true
17 changes: 17 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Unittests

on:
workflow_dispatch:
branches-ignore: [release]
workflow_call:
pull_request:
branches-ignore: [release]
push:
branches-ignore: [release]

jobs:
test-python:
secrets: inherit
uses: nxt-dev/nxt/.github/workflows/unittests.yml@dev
with:
QT_DEPENDENCIES: true
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<div align="center">

![Release Status](https://github.com/nxt-dev/nxt_editor_test/actions/workflows/release.yml/badge.svg?branch=release)
![Dev Status](https://github.com/nxt-dev/nxt_editor_test/actions/workflows/unittests.yml/badge.svg?branch=dev)
# NXT Editor

</div>
**nxt** (**/ɛn·ɛks·ti/**) is a general purpose code compositor designed for rigging, scene assembly, and automation. (node execution tree)
[Installation/Usage](#installationusage) | [Docs](https://nxt-dev.github.io/) | [Contributing](CONTRIBUTING.md) | [Licensing](LICENSE)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
long_description_content_type="text/markdown",
url="https://github.com/nxt-dev/nxt_editor",
packages=setuptools.find_packages(),
python_requires='>=2.7, <3.11',
python_requires='>=3.7, <3.11',
install_requires=['nxt-core<1.0,>=0.14',
'qt.py==1.1',
'qt.py<3',
'pyside2>=5.11,<=5.16'
],
package_data={
Expand Down

0 comments on commit 43fcbe4

Please sign in to comment.