From 71c0ac8ad7353f75b26e27ef649d9fb1676ad8d0 Mon Sep 17 00:00:00 2001 From: Rithika Borpuzari <84436221+rithika12345@users.noreply.github.com> Date: Mon, 28 Aug 2023 20:31:06 +0530 Subject: [PATCH 1/2] Create rithika_feature --- rithika_feature | 1 + 1 file changed, 1 insertion(+) create mode 100644 rithika_feature diff --git a/rithika_feature b/rithika_feature new file mode 100644 index 0000000..4fe915c --- /dev/null +++ b/rithika_feature @@ -0,0 +1 @@ +Request of pull From 78ba482fc226ec340bfdfcb59726489bc7085f2d Mon Sep 17 00:00:00 2001 From: Rithika Borpuzari <84436221+rithika12345@users.noreply.github.com> Date: Mon, 28 Aug 2023 20:34:55 +0530 Subject: [PATCH 2/2] Create main.yml --- .github/workflows/main.yml | 53 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 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..f91ddb7 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,53 @@ +name: Test + + + +on: + + # Triggers the workflow on push or pull request events but only for the main branch + + push: + + branches: [ main ] + + pull_request: + + branches: [ main ] + + + + # Allows running this workflow manually from the Actions tab + + workflow_dispatch: + + + +jobs: + + # Contains a single job called "build" + + build: + + runs-on: ubuntu-latest + + steps: + + # Checks out repository under $GITHUB_WORKSPACE, so job can access it + + - 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.