From 27e65d86b2c5eee94f7c386c416c66c00d62b0a2 Mon Sep 17 00:00:00 2001 From: Devdatta Kulkarni Date: Mon, 3 Jun 2024 18:55:04 +0000 Subject: [PATCH] GitHub Actions --- .github/workflows/demo-workflow-file.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/demo-workflow-file.yml diff --git a/.github/workflows/demo-workflow-file.yml b/.github/workflows/demo-workflow-file.yml new file mode 100644 index 0000000..077ffed --- /dev/null +++ b/.github/workflows/demo-workflow-file.yml @@ -0,0 +1,12 @@ +on: [push] + +jobs: + build: + name: Hello world + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Write a multi-line message + run: | + echo This demo file shows a + echo very basic and easy-to-understand workflow.