Files
testci/.gitea/workflows/test.yml
Matthew Howle a34c3b624e
All checks were successful
Test / test-ci (push) Successful in 5s
Check for commands
2025-04-20 01:16:57 -04:00

27 lines
508 B
YAML

name: Test
on:
push:
branches:
- main
workflow_dispatch:
jobs:
test-ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Test
run: |
whoami
env
echo "------------"
echo "jq: $(command -v jq)"
echo "python3: $(python3 -V)"
echo "git: $(command -v git)"
- name: Print success
run: echo "✅ Rootless Docker is working inside Gitea act_runner"