Update *.yaml

This commit is contained in:
2025-10-16 23:58:47 -07:00
parent 7101ddb38c
commit 7eb71757ea
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
name: Parallel Jobs
on:
workflow_dispatch:
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Linting
run: echo "Running linting..."
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Unit Tests
run: echo "Running unit tests..."
integration_tests:
runs-on: ubuntu-latest
steps:
- name: Set Up Test Environment
run: echo "Setting up test environment..."
- name: Integration Tests
run: echo "Running integration tests..."