first commit

This commit is contained in:
ascet-tomsk
2026-01-11 00:49:37 +07:00
commit f62d6e7fc0
23 changed files with 337 additions and 0 deletions

21
8.2-test.yml Normal file
View 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