Skip to content

try with dash 0 instead #62

try with dash 0 instead

try with dash 0 instead #62

Workflow file for this run

name: Test Dev Workflow
on:
workflow_dispatch:
push:
branches:
- main
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: echo "Running tests..." # Replace with actual test commands
- name: Upload test results
uses: actions/upload-artifact@v4
with:
name: test-results
path: report.xml
test-dev-workflow:
needs: test
uses: ./.github/workflows/dev-workflow.yaml
secrets: inherit