Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
umaranit authored Nov 5, 2024
1 parent 13e85dd commit 0779b3a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run Tests

on:
workflow_dispatch:
inputs:
test_suite:
description: 'Select Test Suite'
required: true
default: 'all'
type: choice
options:
- unit
- integration
- e2e
- all

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Run selected test suite
run: |
echo "Running ${{ github.event.inputs.test_suite }} tests"

0 comments on commit 0779b3a

Please sign in to comment.