Добавить .gitea/workflows/test.yml
All checks were successful
Test Runner / test (push) Successful in 3s
All checks were successful
Test Runner / test (push) Successful in 3s
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 Runner
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Show info
|
||||||
|
run: |
|
||||||
|
echo "🎉 Runner работает!"
|
||||||
|
echo "OS: $(lsb_release -ds)"
|
||||||
|
echo "Runner: $(whoami)"
|
||||||
|
echo "Node: $(node --version)"
|
||||||
|
|
||||||
|
- name: Create file
|
||||||
|
run: |
|
||||||
|
echo "Hello from Gitea Actions!" > test.txt
|
||||||
|
ls -la
|
||||||
Reference in New Issue
Block a user