Github actions CI CD pipeline test #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Deploy Code | |
| on: [push, pull_request] | |
| jobs: | |
| job1: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: pulling git repo | |
| uses: actions/checkout@v4 | |
| with: | |
| sparse-checkout: . | |
| - name: Testing CI | |
| run: echo "Test completed" |