27 lines
508 B
YAML
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"
|