diff --git a/.forgejo/workflows/listdir.yaml b/.forgejo/workflows/listdir.yaml new file mode 100644 index 0000000..e51c503 --- /dev/null +++ b/.forgejo/workflows/listdir.yaml @@ -0,0 +1,10 @@ +on: [push] +jobs: + print-content: + runs-on: debian-latest + steps: + - name: checkout code + uses: actions/checkout@v4 + + - name: list directory contents + run: ls -la diff --git a/.forgejo/workflows/runpy.yaml b/.forgejo/workflows/runpy.yaml deleted file mode 100644 index accf671..0000000 --- a/.forgejo/workflows/runpy.yaml +++ /dev/null @@ -1,6 +0,0 @@ -on: [push] -jobs: - test: - runs-on: debian-latest - steps: - - run: echo All good!