Some checks failed
Git Backup to WebDAV / print-content (push) Failing after 5s
16 lines
294 B
Text
16 lines
294 B
Text
on: [push]
|
|
|
|
jobs:
|
|
print-content:
|
|
runs-on: debian-latest
|
|
steps:
|
|
- name: checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: install tree
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y tree
|
|
|
|
- name: list directory contents
|
|
run: tree
|