From d63b3c57d28acdc5a0193f26d3bbc5b1e5e0ac09 Mon Sep 17 00:00:00 2001 From: Julia Date: Wed, 29 Nov 2023 21:42:07 +0100 Subject: [PATCH] use checkout action --- .github/workflows/test-cli.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test-cli.yml b/.github/workflows/test-cli.yml index fb711897..5bbcca6d 100644 --- a/.github/workflows/test-cli.yml +++ b/.github/workflows/test-cli.yml @@ -9,15 +9,16 @@ jobs: install: runs-on: ubuntu-latest steps: - # - id: install - # run: npm install -g clever-tools - # - id: command - # run: clever --version - - id: clone - run: git clone https://github.com/CleverCloud/documentation.git - # - id: enter - # run: cd documentation/documentation - - id: path - run: pwd - - id: files - run: ls -a + - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." + - name: install celevr-tools + run: npm install -g clever-tools + - run: clever --version +