feat: Add Gitea workflow support (.gitea/workflows) - Support for both .github/workflows and .gitea/workflows directories - Fixed workflow execution path resolution - Cleaned up debugging code - Updated to version 1.2.5
Some checks failed
Test Gitea Workflow / test (push) Has been cancelled
Some checks failed
Test Gitea Workflow / test (push) Has been cancelled
This commit is contained in:
21
.gitea/workflows/test-gitea.yml
Normal file
21
.gitea/workflows/test-gitea.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Test Gitea Workflow
|
||||
run-name: Test Gitea Workflow
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Run tests
|
||||
run: echo "Testing Gitea workflow"
|
||||
|
||||
- name: Build
|
||||
run: echo "Building project"
|
||||
Reference in New Issue
Block a user