Init Repo
Gitea Actions Deploy / Explore-Gitea-Actions (push) Waiting to run Details

This commit is contained in:
indigo 2023-12-26 22:06:38 +08:00
commit 91e82116e5
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,11 @@
name: Gitea Actions Deploy
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."

15
README.md Normal file
View File

@ -0,0 +1,15 @@
# Test Repo for Action
This repo for test Action
## Requirement
* Module A
* Module B
* Module C
## Build Code
```python
import os
os.path.join(os.getenv('PROJECT_ROOT'), 'file.txt')
for i in range(10):
print(i)
```