d4t_formulas/.github/workflows/checkout.yml
Álvaro González 63d9230dea absolute paths 4
2026-05-13 10:23:21 +02:00

21 lines
No EOL
455 B
YAML

name: Test checkout
on:
push:
tags:
- 'test*'
jobs:
test_checkout_no_actions:
runs-on: ubuntu-latest
permissions:
contents: write # needed to create releases
steps:
- name: Environment Variables
run: pwd; env
- name: Checkout
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh repo clone $GITHUB_REPOSITORY . -- --depth 1
- name: List files
run: find $(pwd)