From 940f020542d3467b79fecfa4ea28764c8397cb9a Mon Sep 17 00:00:00 2001 From: restitux Date: Thu, 27 Nov 2025 20:08:03 -0700 Subject: [PATCH] new ci test --- .gitlab-ci.yml => .gitea/workflows/test.yaml | 23 +++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) rename .gitlab-ci.yml => .gitea/workflows/test.yaml (65%) diff --git a/.gitlab-ci.yml b/.gitea/workflows/test.yaml similarity index 65% rename from .gitlab-ci.yml rename to .gitea/workflows/test.yaml index 1e4ed62..2cc97a0 100644 --- a/.gitlab-ci.yml +++ b/.gitea/workflows/test.yaml @@ -19,17 +19,14 @@ # only: # - branches -stages: - - run +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] -run: - stage: run - image: rust:latest - script: - - echo "foo" - - echo "bar" - - echo "baz" > foo - artifacts: - paths: - - ./foo - expire_in: 1 week +jobs: + TestStage: + runs-on: ubuntu-latest + steps: + - run: echo "foo" + - run: echo "bar" + - run: echo "baz" > foo