test-actions/.forgejo/workflows/manual.yml

35 lines
755 B
YAML
Raw Permalink Normal View History

2025-06-07 16:48:24 +00:00
# This file needs to be manually run
name: Manual Test
on:
workflow_dispatch:
jobs:
ls:
name: List
runs-on: docker
2025-06-07 16:48:24 +00:00
steps:
2025-06-07 16:50:26 +00:00
- name: Checkout the repository
uses: https://forge.niblock.tech/actions/checkout@v4
- name: List the repository files
run: |
2025-06-07 16:52:30 +00:00
ls ${{ github.workspace }}
- name: Tell me who I am
run: |
whoami
2025-06-07 16:54:47 +00:00
- name: Is Docker installed in the default bookworm container?
run: |
which docker || echo "Nope :("
2025-06-07 16:52:30 +00:00
- name: Check for the Docker socket
run: |
2025-06-07 17:07:42 +00:00
ls -alh /var/run/
- name: Setup buildx
uses: https://forge.niblock.tech/actions/setup-buildx-action@v3
with:
driver: docker