mirror of
https://git.turbo-data.com/nprasad2077/docker-templates.git
synced 2026-09-22 08:05:56 +00:00
23 lines
551 B
YAML
23 lines
551 B
YAML
# Runner smoke test. Runs on every push/PR to confirm the act_runner
|
|
# (see gitea/docker-compose.yml + gitea/config.yaml) is picking up jobs.
|
|
name: hello-world
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
hello:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Say hello
|
|
run: echo "Hello from Gitea Actions on ${{ gitea.server_url }}"
|
|
|
|
- name: Show context
|
|
run: |
|
|
echo "repo=${{ gitea.repository }} ref=${{ gitea.ref }} sha=${{ gitea.sha }}"
|
|
node --version
|