From 035bfe52a30d0b547474643fcce7f29ec18c8f79 Mon Sep 17 00:00:00 2001 From: Marcos Bento Date: Sun, 6 Oct 2024 12:08:29 +0100 Subject: [PATCH] Add personal CI... hummm, will it work? --- .github/workflows/hummm.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/hummm.yml diff --git a/.github/workflows/hummm.yml b/.github/workflows/hummm.yml new file mode 100644 index 000000000..c505c64dc --- /dev/null +++ b/.github/workflows/hummm.yml @@ -0,0 +1,25 @@ +name: hummm + +on: + # Trigger the workflow on push to master or develop, except tag creation + push: + branches: + - 'feature/**' + tags-ignore: + - '**' + +jobs: + hummm: + name: hummmm + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Run a one-line script + run: echo Hello, world! + + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project.