diff --git a/.gitea/workflows/hello.yml b/.gitea/workflows/hello.yml deleted file mode 100644 index 3fc49aa..0000000 --- a/.gitea/workflows/hello.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: hello-executor-probe -on: [push, workflow_dispatch] -jobs: - default-image: - runs-on: eulernest - steps: - - name: probe default image - run: | - echo "=== DEFAULT IMAGE (no container:) ===" - (. /etc/os-release 2>/dev/null && echo "os: $PRETTY_NAME") || echo "os: unknown" - echo "node: $(node --version 2>&1 || echo MISSING)" - echo "python3: $(python3 --version 2>&1 || echo MISSING)" - echo "git: $(git --version 2>&1 || echo MISSING)" - slim-python: - runs-on: eulernest - container: python:3.12-slim - steps: - - name: probe python slim - run: | - echo "=== python:3.12-slim ===" - echo "python3: $(python3 --version 2>&1 || echo MISSING)" - echo "git: $(git --version 2>&1 || echo MISSING)" - echo "node: $(node --version 2>&1 || echo MISSING)"