From 12626eadd4dba019ab1ebb082c29864dd642cdfd Mon Sep 17 00:00:00 2001 From: maximo tejeda Date: Tue, 13 Aug 2024 12:09:39 -0400 Subject: [PATCH] Fix identration problem --- .gitea/workflows/ci.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index bc9a592..9fc6c47 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -2,19 +2,19 @@ name: Ci Actions on: push: branches: [master] - jobs: +jobs: # job for testing CI inside code repo - checkout: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - process: - runs-on: ubuntu-latest - steps: - - name: run one line script - run: echo one line script - - name: runs a set of command using the runner shell - run: | - echo Add oher actions to build, - echo test, and deploy your project . + checkout: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + process: + runs-on: ubuntu-latest + steps: + - name: run one line script + run: echo one line script + - name: runs a set of command using the runner shell + run: | + echo Add oher actions to build, + echo test, and deploy your project .