Skip to content

Commit

Permalink
add nightly packaging and pytest workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartin-tech committed Jan 29, 2025
1 parent d706f80 commit 74651c5
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Nightly Testing

on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

jobs:
linux:
name: Nightly Linux
uses: ./.github/workflows/test_linux.yml
windows:
name: Nightly Windows
uses: ./.github/workflows/test_windows.yml
macos:
name: Nightly MacOS
uses: ./.github/workflows/test_macos.yml
package_test:
name: Nightly Packaging
uses: ./.github/workflows/remote_package_install.yml
1 change: 1 addition & 0 deletions .github/workflows/remote_package_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- 'main'
pull_request:
workflow_dispatch:
workflow_call:

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- 'main'
pull_request:
workflow_dispatch:
workflow_call:

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- 'main'
pull_request:
workflow_dispatch:
workflow_call:

jobs:
build_macos:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- 'main'
pull_request:
workflow_dispatch:
workflow_call:

jobs:
build_windows:
Expand Down

0 comments on commit 74651c5

Please sign in to comment.