Compare commits

..

2 Commits

1 changed files with 10 additions and 0 deletions

10
.gitea/workflows/test.yml Normal file
View File

@ -0,0 +1,10 @@
name: Simple Test Workflow
on: [push]
jobs:
test-job:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run a command
run: echo "Hello, Gitea Actions!"