diff --git a/.github/workflows/init.yml b/.github/workflows/init.yml new file mode 100644 index 000000000..13412824e --- /dev/null +++ b/.github/workflows/init.yml @@ -0,0 +1,17 @@ +name: CI Pipeline + +on: + push: + branches: [ "**" ] + pull_request: + branches: [ "**" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + +