Merge pull request #2418 from posit-dev/eda-gradio-support #1057
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: Main | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
# Unit Tests | |
agent: | |
uses: ./.github/workflows/agent.yaml | |
vscode: | |
uses: ./.github/workflows/vscode.yaml | |
# Build | |
build: | |
uses: ./.github/workflows/build.yaml | |
package: | |
needs: build | |
uses: ./.github/workflows/package.yaml | |
archive: | |
needs: build | |
uses: ./.github/workflows/archive.yaml | |
upload: | |
needs: | |
- archive | |
- package | |
uses: ./.github/workflows/upload.yaml | |
secrets: inherit | |
# Integration Tests | |
bats: | |
needs: build | |
secrets: inherit | |
uses: ./.github/workflows/bats.yaml |