From 08c0395fb21fce66915b81e211a4b4768837aabd Mon Sep 17 00:00:00 2001 From: fatou1526 <95891257+fatou1526@users.noreply.github.com> Date: Tue, 19 Sep 2023 19:04:51 +0000 Subject: [PATCH] Create main_workflow.yml --- .github/workflows/main_workflow.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main_workflow.yml diff --git a/.github/workflows/main_workflow.yml b/.github/workflows/main_workflow.yml new file mode 100644 index 0000000..60c2bb5 --- /dev/null +++ b/.github/workflows/main_workflow.yml @@ -0,0 +1,17 @@ +name: Csv Data Processing +on: + workflow_dispatch: + push: + branches: + - main + pull_request: + + +jobs: + build: + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + + - name: Welcome + run: python -c "print('Hello world, welcome to this workflow')"