Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/smoketest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ permissions:
statuses: read # Required for checking if all commit statuses are "success" in order to deploy the PR

jobs:
Linux:
permission-check:
runs-on: ubuntu-latest
environment: smoketest
if: github.event.issue.pull_request # Make sure the comment is on a PR
outputs:
allowed: ${{ steps.branch-deploy.outputs.continue }}
steps:
- name: branch-deploy
id: branch-deploy
Expand All @@ -29,6 +31,12 @@ jobs:
stable_branch: "main"
update_branch: "disabled"

run-tests:
runs-on: ubuntu-latest
environment: smoketest
needs: permission-check
if: needs.permission-check.outputs.allowed == 'true'
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down