From 165cf1709a662ecb01968dde4d7df03b5c40e6a0 Mon Sep 17 00:00:00 2001 From: Rahulsinh Jadeja Date: Sat, 10 Aug 2024 13:32:51 +0530 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..cc1294f --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,10 @@ +name: Basic workflow +run-name: Testing Github Actions + +on: [push] + +jobs: + basic_workflow: + runs-on: ubuntu-latest + steps: + - run: echo "Executing this workflow"