From 606ef76ffc13c4ffeb84e1d30347d2d556643a00 Mon Sep 17 00:00:00 2001 From: Ahmed Hesham Date: Mon, 29 Sep 2025 12:01:46 +0300 Subject: [PATCH] update --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..7245e58 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: 00 Basic Workflow + +# Controls when the workflow will run +on: [push, pull_request, workflow_dispatch] + +jobs: + # This workflow contains a single job called "build" + build: + + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4.1.1 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! +