test multi-job workflow support

This commit is contained in:
csh
2026-07-02 15:47:58 +08:00
commit c298f747a0
2 changed files with 27 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
name: Test Multi Jobs
on:
push:
branches:
- main
workflow_dispatch:
jobs:
first:
runs-on: standard-ubuntu-22
steps:
- name: First
run: |
echo "first ok"
second:
needs: first
runs-on: standard-ubuntu-22
steps:
- name: Second
run: |
echo "second ok"
+4
View File
@@ -0,0 +1,4 @@
# Gitea Actions multi-job test
This repository verifies whether the Gitea runner supports multiple jobs and
same-workflow `needs` dependencies.