🏗️ test gitea actions and act runner
This commit is contained in:
21
.gitea/workflows/test.yml
Normal file
21
.gitea/workflows/test.yml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
name: Test CI Pipeline
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Run test
|
||||||
|
run: |
|
||||||
|
echo "Hello from Gitea Actions!"
|
||||||
|
echo "Runner: $(hostname)"
|
||||||
|
echo "Working directory: $(pwd)"
|
||||||
|
ls -la
|
||||||
|
|
||||||
|
- name: Test Docker
|
||||||
|
run: |
|
||||||
|
docker --version
|
||||||
|
echo "Docker is available in CI!"
|
||||||
Reference in New Issue
Block a user