From c41abd19a1dc90ad31bb77c3ea6cb3db226ef9b8 Mon Sep 17 00:00:00 2001 From: maximo tejeda Date: Tue, 13 Aug 2024 11:54:18 -0400 Subject: [PATCH] Add ci workflow --- .gitea/workflows/ci.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..2c9c4ae --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,20 @@ +name: Ci Actions +on: + push: + branches: [main] + 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. +