Skip to content

Commit

Permalink
ci(github-actions): try to make manual test
Browse files Browse the repository at this point in the history
  • Loading branch information
PunGrumpy committed Nov 17, 2023
1 parent fe4956c commit 06e780e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,27 @@ on:
push:
pull_request:
workflow_dispatch:
inputs:
reason:
description: 'Reason for running workflow'
required: true
options:
- 'manual'
- 'test'
type: choice
env:
ACTIONS_STEP_DEBUG: true
jobs:
debug:
name: 🐛 Debug
runs-on: ubuntu-latest
if: ${{ github.event.inputs.reason == 'test' }}
env:
ACTIONS_STEP_DEBUG: true
tests:
name: 🥼 Tests
needs: debug
continue-on-error: true
strategy:
matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
Expand Down

0 comments on commit 06e780e

Please sign in to comment.