test-actions/.forgejo/workflows/manual.yml
niblock e9a3cf4417
All checks were successful
/ ls (push) Successful in 45s
Set runner to Docker, try with brand new runner
fingies crossed!
2025-06-08 00:05:30 +00:00

33 lines
No EOL
716 B
YAML

# This file needs to be manually run
name: Manual Test
on:
workflow_dispatch:
jobs:
ls:
name: List
runs-on: docker
steps:
- name: Checkout the repository
uses: https://forge.niblock.tech/actions/checkout@v4
- name: List the repository files
run: |
ls ${{ github.workspace }}
- name: Tell me who I am
run: |
whoami
- name: Is Docker installed in the default bookworm container?
run: |
which docker || echo "Nope :("
- name: Check for the Docker socket
run: |
ls -alh /var/run/
- name: Setup buildx
uses: https://forge.niblock.tech/actions/setup-buildx-action@v3