From 0e49b8cbc0b4b66b4b0973bf430ac1af6dd14ddf Mon Sep 17 00:00:00 2001 From: Jean-Marie Mineau Date: Tue, 12 Mar 2024 11:13:56 +0100 Subject: [PATCH] test checkout --- .forgejo/workflows/test.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml index 2b54615..3895afb 100644 --- a/.forgejo/workflows/test.yaml +++ b/.forgejo/workflows/test.yaml @@ -4,10 +4,22 @@ jobs: runs-on: debian steps: - run: echo All Good - - run: python -c 'print("Hello world!")' + - run: ls + - run: pwd test_container: runs-on: debian container: image: python:latest steps: - run: python -c 'print("Hello world!")' + test_checkout: + runs-on: debian + container: + image: + steps: + - uses: https://code.forgejo.org/actions/checkout@v3 + - run: | + ls + pwd + echo $GITHUB_WORKSPACE + ls $GITHUB_WORKSPACE