Add Execute Streamlit command for running Streamlit apps #319
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: SPCS Integration testing | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
tags: | |
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 | |
branches: | |
- main | |
repository_dispatch: | |
types: [ok-to-test-command] | |
schedule: | |
- cron: "0 8 * * *" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
define-matrix: | |
uses: ./.github/workflows/matrix.yaml | |
# Branch-based pull request | |
spcs-integration-trusted: | |
needs: define-matrix | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.10"] | |
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository | |
uses: ./.github/workflows/test_trusted.yaml | |
with: | |
runs-on: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} | |
python-env: integration | |
hatch-run: integration:test-spcs | |
secrets: inherit | |
# Repo owner has commented /ok-to-test on a (fork-based) pull request | |
spcs-integration-fork: | |
needs: define-matrix | |
strategy: | |
fail-fast: true | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.10"] | |
permissions: | |
pull-requests: write | |
checks: write | |
if: | | |
github.event_name == 'repository_dispatch' && | |
github.event.client_payload.slash_command.args.named.sha != '' && | |
contains( | |
github.event.client_payload.pull_request.head.sha, | |
github.event.client_payload.slash_command.args.named.sha | |
) | |
uses: ./.github/workflows/test_fork.yaml | |
with: | |
runs-on: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} | |
python-env: integration | |
hatch-run: integration:test-spcs | |
secrets: inherit |