Update *.yaml
This commit is contained in:
26
.gitea/workflows/002_parallel_jobs.yaml
Normal file
26
.gitea/workflows/002_parallel_jobs.yaml
Normal 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..."
|
||||||
Reference in New Issue
Block a user