Skip to content

marble

marble #2586

Workflow file for this run

name: marble
on:
pull_request: # Automatic test
types: [opened, reopened, synchronize]
branches: [master]
paths:
- .github/workflows/.common.yml
- .github/workflows/marble.yml
- marble/**
- Common.ps1
- test.ps1
- update_all.ps1
schedule:
- cron: 0 4 * * * # Scheduled test
- cron: 15 1-23/6 * * * # Scheduled update
workflow_dispatch: # Manual run
inputs:
type:
description: Type
type: choice
required: true
default: Test
options:
- Force update
- Test
- Update
jobs:
job:
name: ${{ inputs.type || (github.event_name == 'pull_request' || github.event.schedule == '0 4 * * *') && 'Test' || 'Update' }}
uses: ./.github/workflows/.common.yml
with:
test: ${{ github.event_name == 'pull_request' || github.event.schedule == '0 4 * * *' || inputs.type == 'Test' }}
force: ${{ inputs.type == 'Force update' }}
test_cases: |
- Start program
Start-Program Marble -Shortcut -Verbose -Debug
- Close program
Close-Program marble-qt -Verbose -Debug
secrets: inherit