22 lines
368 B
YAML
22 lines
368 B
YAML
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"
|