Add files via upload #16
This file contains 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: CI/CD Workflow | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build and Test | |
run: | | |
# Your build and test commands here | |
- name: Deploy | |
run: | | |
# Your deployment commands here | |
- name: Final checks | |
run: | | |
# Additional checks or validations | |
# This step is Required to Pass | |
continue-on-error: ${{ false }} |