33 lines
No EOL
716 B
YAML
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 |